RSS feeds are an essential tool for bloggers and website owners to keep their readers updated with the latest content. However, by default, WordPress RSS feeds do not include post thumbnails. This can be a significant drawback, especially for sites that heavily rely on visual content. In this article, we will learn how to add post thumbnail to WordPress RSS feeds.
Step-by-Step Guide to Add Post Thumbnail to WordPress RSS Feeds
Go to Theme File Editor > click the functions.php file of your theme.

On the functions.php add the following code to the file:
function rss_post_thumbnail($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = '<p>' . get_the_post_thumbnail($post->ID) . '</p>' . get_the_content(); } return $content; } add_filter('the_excerpt_rss', 'rss_post_thumbnail'); add_filter('the_content_feed', 'rss_post_thumbnail');
Save the file by clicking the “Update File” and upload it to your server. Now, open your RSS feed URL in a new tab or window, and you will see the post thumbnail displayed in the feed.

Conclusion
Adding post thumbnails to WordPress RSS feeds is a simple yet effective way to enhance your website’s user experience. By following the steps mentioned above, you can easily display post thumbnails in your RSS feeds, which can help you attract more readers and keep them engaged with your content. If you are looking for disabling RSS feeds in WordPress, click this.
Add Post Thumbnail To WordPress RSS Feeds FAQ
Here are the most common questions about add post thumbnail To WordPress RSS feeds.
By adding post thumbnails to your RSS feeds, you can make your content more visually appealing and engaging for your audience.
Yes, there are several WordPress plugins available that allow you to add post thumbnails to your RSS feeds without any coding.
No, adding post thumbnails to your RSS feeds will not affect your website’s loading speed since the images are not loaded on your site but rather in the RSS reader.
Yes, you can choose which post thumbnail to display in your RSS feeds by setting a featured image for each post.
Yes, adding post thumbnails to your RSS feeds can increase the file size of the feed, which can affect the loading speed of the feed for some readers.