Feature image doesn't show in feedburner

Posted in: Newspaper
Post count: 20

Greetings,

I’ve inserted the code listed above in functions.php, and my feed hasn’t been changed. I also used the Ping FeedBurner for refreshing my feed and also waited several hours for that feature to change.
What should i do next?

url: http://www.caandesign.com

// THIS INCLUDES THE THUMBNAIL IN OUR RSS FEED
function insertThumbnailRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = ” . get_the_post_thumbnail( $post->ID, ‘thumbnail’, array(‘style’ => ‘margin-bottom:10px;float:right;’) ) . ” . $content;
}
return $content;
}

add_filter(‘the_excerpt_rss’, ‘insertThumbnailRSS’);
add_filter(‘the_content_feed’, ‘insertThumbnailRSS’);

Post count: 6600

Hi,

I’ve checked your site’s feeds and found that the image is included there: http://screencast.com/t/J7jWE1dX
Also tested with this online feedreader (at feedreader.com): http://screencast.com/t/JAkDFHvZktT1 so it seems that its working now,make sure you empty all caches and purge files if you use cdn host and check again.

Thanks

Post count: 20

Yes, i understand that the images appear there.
But if i check them here: http://feeds.feedburner.com/caandesign, you can see that the only things that appear are the title and some text from the posts.

The feed should be something like this: http://feeds.feedburner.com/contemporist

Thanks

Post count: 6600

Hi,

I can see that your feeds do show images when using feedburner: http://feeds.feedburner.com/WorldwideSourceOfArchitectureAndHomeDesignMagazine
The feeds work the same on newspaper demo: http://feeds.feedburner.com/Newspaperr

You can try this to also control the thumb dimensions: http://brianjackson.io/show-featured-image-wordpress-rss-feed/

Thanks

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.