• The feeds doesn’t show the RSS images, though it was showing the images previously with the same code which I had inserted in the function.php file

    <?php
    include ("../modernize/function.php")
    function rss_post_thumbnail($content) {
    global $post;
    if(has_post_thumbnail($post->ID)) {
    $content = '<p>' . get_the_post_thumbnail($post->ID, 'thumbnail') .'</p>' . $content;
    }
    return $content;
    }
    add_filter('the_excerpt_rss', 'rss_post_thumbnail');
    add_filter('the_content_feed', 'rss_post_thumbnail');
    ?>

    The link to the RSS feed is: https://goo.gl/mSZhi
    The Link to the site is: https://goo.gl/qqGmJ

    The same code was working perfectly alright,but from yesterday the images are not displaying the the RSS feed. Any suggestion on the subject will be appreciated.

  • The topic ‘RSS Feeds not showing image.’ is closed to new replies.