No. I want images to appear in the actual RSS feed.
I know there's a plugin for adding thumbnails from an image attachment into the feed, but when using only 'Featured Images' with this theme, no images show.
I added a few lines of code into functions.php:
// 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' ) . '' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'insertThumbnailRSS');
add_filter('the_content_feed', 'insertThumbnailRSS');
...but that only adds a tiny thumbnail into the main feed and doesn't add anything into the category feeds domain.com/category/feed.
i'm stuck...