Hi,
I have no featured image with RSS Feed.
I would like it for the Google news RSS feed for exemple.
Is it caused by ENFOLD theme ?
How can I have it ?
I have tried some plugins but without success. But each time, there is no featured image.
I selected full-text under Settings–>Reading.
Thanks
Hi ppi37,
Maybe this tutorial will help you out? http://www.wpbeginner.com/wp-tutorials/how-to-create-custom-rss-feeds-in-wordpress/
Thanks,
Rikard
Hi Rikard,
The tutorial :
All you have to do is open your theme’s functions.php file and add the following code :
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’);
_________________
I do it, but nathing change.
There is no thumbnail ????
Thanks