Tagged: rss
Hi all:
On my RSS feed, the post featured image is included in the content:encoded section of the RSS feed.
How can I stop this?
Here is what I’d like to achieve, without changing my blog layout on the site:
I would like to either exclude the featured image, or include it only as a right aligned 100px wide image, wrapped with the excerpt text.
Can you point me to the code where Enfold creates the RSS feed, and show me how I could “skip” including the post image, or alter it?
Many Thanks, Juergen
Hey JuergenB!
Thank you for using Enfold.
Try to use this on functions.php to remove featured images on rss feeds:
remove_filter('the_content', 'featureimage_for_feeds');
This might not work immediately. Try to wait a few hours before checking the feed or test it on another browser.
Best regards,
Ismael
Hi Ismael:
Many thanks, this worked great!
Juergen