Show features images in the RSS feed in WordPress

Show features images in the RSS feed in WordPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

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');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.