How to Add Featured Image in WordPress RSS Feed

Featured Image in WordPress RSS Feed. If you use an RSS feed on your WordPress website, you’ll notice that the featured image isn’t included in your RSS feed’s posts by default. Having an RSS feed with images will enhance your syndication and may com…


This content originally appeared on DEV Community and was authored by elinabey

Add Featured Image in WordPress RSS Feed

Featured Image in WordPress RSS Feed. If you use an RSS feed on your WordPress website, you'll notice that the featured image isn't included in your RSS feed's posts by default. Having an RSS feed with images will enhance your syndication and may come in handy later because marketing tools like Mailup, Aweber, MailChimp use RSS feeds to create newsletters. RSS really means simple syndication.

In this brief guide, I will show you how to show your featured image in WordPress RSS feed using a plugin and without a plugin.

Featured Image in WordPress RSS Feed (Manually)

If you are familiar with modifying your functions.php file, you can use the code below to display the prominent Featured images in your RSS feed.

  1. Login to your WordPress Dashboard.
  2. Go to Appearance >> Theme Editor.
  3. Click on function.php
  4. Add given code in the bottom of function.php file.
  5. That's All, Click on Update file.

You can also add this code by using FTP.

Featured Image

/**
 * Featured image to RSS Feed.
 */
function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
}
return $content;
}

add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');

Copy the above code and paste it into your function.php file. If you don't know what you are doing with the function first make a backup.

I shared this post from Add Featured Image in WordPress RSS Feed you can read in detail from there. Also they have provided easy way by using a plugin.

If you have any question please discuss below help to improve. Thank you.


This content originally appeared on DEV Community and was authored by elinabey


Print Share Comment Cite Upload Translate Updates
APA

elinabey | Sciencx (2021-12-26T17:28:44+00:00) How to Add Featured Image in WordPress RSS Feed. Retrieved from https://www.scien.cx/2021/12/26/how-to-add-featured-image-in-wordpress-rss-feed/

MLA
" » How to Add Featured Image in WordPress RSS Feed." elinabey | Sciencx - Sunday December 26, 2021, https://www.scien.cx/2021/12/26/how-to-add-featured-image-in-wordpress-rss-feed/
HARVARD
elinabey | Sciencx Sunday December 26, 2021 » How to Add Featured Image in WordPress RSS Feed., viewed ,<https://www.scien.cx/2021/12/26/how-to-add-featured-image-in-wordpress-rss-feed/>
VANCOUVER
elinabey | Sciencx - » How to Add Featured Image in WordPress RSS Feed. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/12/26/how-to-add-featured-image-in-wordpress-rss-feed/
CHICAGO
" » How to Add Featured Image in WordPress RSS Feed." elinabey | Sciencx - Accessed . https://www.scien.cx/2021/12/26/how-to-add-featured-image-in-wordpress-rss-feed/
IEEE
" » How to Add Featured Image in WordPress RSS Feed." elinabey | Sciencx [Online]. Available: https://www.scien.cx/2021/12/26/how-to-add-featured-image-in-wordpress-rss-feed/. [Accessed: ]
rf:citation
» How to Add Featured Image in WordPress RSS Feed | elinabey | Sciencx | https://www.scien.cx/2021/12/26/how-to-add-featured-image-in-wordpress-rss-feed/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.