Go to Googles FeedBurner and make an account if you don’t have one.
Put your wordpress link to your RSS feed in the box where it says “Burn a feed right this instant” and click Next.
Follow the instructions.
After making your feedburner feed
click on the Publicize link
Feedburner’s Buzzboost:
Customize it to how you like it.
Click Activate
Copy the supplied code
Now create a block
AdminCP > CMS > Add new block
use these settings or anything similar
Paste it in the Code area for this block.
Now time to jump over to wordpress and set that up.
Go to your functions.php file in your themes folder. Either FTP or in wordpress back end. Appearance > Editor
add this code
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
// post thumbnail support if ( function_exists( 'add_image_size' ) ) add_theme_support( 'post-thumbnails' ); if ( function_exists( 'add_image_size' ) ) { add_image_size( 'post-thumb', 220, 150 ); // adjust these sizes to whatever size you want your "Featured Images" to display on your phpfox site. } // FEED-BURNER IMAGE HACK function featuredtoRSS($content) { global $post; if ( has_post_thumbnail( $post->ID ) ){ $content = '' . get_the_post_thumbnail( $post->ID, 'post-thumb', array( 'style' => 'float:left; margin:0 15px 15px 0;' ) ) . '' . $content; } return $content; } add_filter('the_excerpt_rss', 'featuredtoRSS'); add_filter('the_content_feed', 'featuredtoRSS'); |
make sure you have a featured image selected for your post.
Finally, now you can remove the feedburner branding logo that at the bottome of the feed using this code add to your .css file on phpfox
|
1 2 3 4 |
#creditfooter { display: none; } |
Your final result should look something similar to this.



