Show the featured image at the top of RSS feed content.
Steps
- Open
functions.php. - Add the code below.
- Save the file.
Done — RSS readers will display featured images.
function rss_featured_image($content) {
global $post;
if (has_post_thumbnail($post->ID)) {
$content = get_the_post_thumbnail($post->ID, 'full') . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'rss_featured_image');
add_filter('the_content_feed', 'rss_featured_image');