• jayqualin1207

    (@jayqualin1207)


    Hello!

    I have been going back and forth between Bloglovin’ trying to figure out why my images were really blurry, and it was because my RSS feed was providing small images. Even after editing the px size in “Media” to 400×400, the photos are still blurry even 5 days later. Additionally, I want to have my featured images as the photo that Bloglovin’ uses, however it is using the first image in the RSS feed. Is there a way to make my featured image for the post the first image in my RSS feed, but without changing the post itself? I am not getting answers on Bloglovin’s end, so I was hoping someone could help me out here.

    Link to Bloglovin’
    Website
    RSS feed

Viewing 2 replies - 1 through 2 (of 2 total)
  • @jayqualin,
    Are u wants Feed image display in large size?

    Thanks,
    Ravipatel

    Add function in function.php or review code and change current theme code for feed.

    if (function_exists('add_theme_support')){
        add_theme_support( 'post-thumbnails' );
        add_image_size( 'feed-thumb-img', 270, 200, TRUE);
    }
    
    // display featured post thumbnails in WordPress feeds
    
    function wcs_post_thumbnails_in_feeds( $content ) {
        global $post;
        if( has_post_thumbnail( $post->ID ) ) {
            $content = '<p>' . get_the_post_thumbnail($post->ID,'feed-thumb-img') . '</p>' . $content;
        }
        return $content;
    }
    add_filter( 'the_excerpt_rss', 'wcs_post_thumbnails_in_feeds' );
    add_filter( 'the_content_feed', 'wcs_post_thumbnails_in_feeds' );
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bloglovin' photos are blurry even after updating px’ is closed to new replies.