Add Post Thumbnail to your WordPress RSS Feeds
The sad truth about WordPress is that even if you enable the post thumbnails, it will not show up in your RSS feeds. But we have a solution for that. In this article, we will show you how you can add post thumbnails to your WordPress RSS feeds with a simple function.
![]()
All you have to do is open your theme’s functions.php file and add the following code:
/*Add Post Thumbnail to your WordPress RSS Feeds*/
function rss_post_thumbnail($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<p>' . get_the_post_thumbnail($post->ID) .
'</p>' . get_the_excerpt();
}
return $content;
}
add_filter('the_excerpt_rss', 'rss_post_thumbnail');
add_filter('the_content_feed', 'rss_post_thumbnail');
This will render your RSS Feed like >> Title – Thumbnail – Excerpt .



