Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #590489

    This thread explains how to remove the featured image from RSS feeds:
    https://kriesi.at/support/topic/rss-feed-how-can-i-supress-the-featured-image/
    using this code:
    remove_filter(‘the_content’, ‘featureimage_for_feeds’);

    It doesn’t appear to work, however, as I get updated content after I change posts in the feed, but it still includes the featured image. Does this method work?

    #590559

    Hi!

    Where did you place the code? are you using a child theme? try this instead:

    add_action('init', function() {
    	remove_filter(‘the_content’, ‘featureimage_for_feeds’);
    });

    Regards,
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.