• Resolved Rasetsukoku

    (@rasetsukoku)


    I use this plugin on Site A to get RSS feed from Site B, but I do not want it to put featured images for RSS for Site A.

    How do I disable it putting featured images in RSS?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Travis

    (@tjtaylor)

    You can change the layout via WordPress filters. Add the following code to your themes functions.php file:

    function custom_rss_layout_callback( $layout ) {
        $layout = array(
            'title',
            'content',
            'postdata',
        );
        return $layout;
    }
    add_filter( 'wp_rss_retriever_layout', 'custom_rss_layout_callback' );

    On my feed, the blog image appears twice. Is it due to the feed picking up the blog post (with image) + the featured image? Will adding this code correct that issue?

    • This reply was modified 3 years, 2 months ago by happywriter. Reason: error
    • This reply was modified 3 years, 2 months ago by happywriter.

    How do we cancel the recurring billing for the rss featured image service? I keep getting billed monthly and no way to stop it or cancel it that I can find anywhere. Thanks

    The code provided here does not seem to fix this plugin adding featured images to your site’s RSS feed.

    @happywriter this plugin adds the featured images to your RSS feed (unclear why because the main purpose of this plugin is to show rss feeds on the frontend). So that is why you’re seeing two copies of the image.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Disable Featured Image in RSS’ is closed to new replies.