hey I’d like to show the featured image for RSS widgets and saw an example on a code level online. Can someone confirm that this will work and where to place it in the X-Theme?
function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = ‘
}
return $content;
}
add_filter(‘the_excerpt_rss’, ‘featuredtoRSS’);
add_filter(‘the_content_feed’, ‘featuredtoRSS’);