display_name; } // print_r( $item ); return $item; } /** * Do some fun shit with formatting our post to add blockquotes and linkback * to the original work. */ function syndicated_post_fmt (&$post) { $post_content = &$post['post_content']; define('PRE_SYN_HTML','
'); define('POST_SYN_HTML',''); $attribution_html_fmt = 'Originally from %s'; $permalink = &$post['meta']['syndication_permalink']; $attribution_html = ''; if ( !empty($permalink) ) $attribution_html = sprintf("$attribution_html_fmt", $permalink, ( !empty($post['post_title']) ? $post['post_title'] : $permalink) ); $post_content = PRE_SYN_HTML . $post_content . POST_SYN_HTML . $attribution_html ; // print_r( $post ); return $post; } ?>