• Resolved lc

    (@lortnoc)


    Would be nice if this plugin could load the thunbnail version of the featured image instead of the full size. In my case we use high resoltuion images. When we have long list of posts, the load of that admin area can get really slow. I solved this by changing the line where you have:

    return get_the_post_thumbnail( $post_id );

    to:

    return get_the_post_thumbnail( $post_id, 'thumbnail' );

    maybe you can fix this for all the users 🙂 Love this plugin!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Austin

    (@austyfrosty)

    When a theme adds ‘post-thumbnail’ support, a special ‘post-thumbnail’ image size is registered, which differs from the ‘thumbnail’ image size managed via the Settings > Media screen.

    Be sure your theme has 'post-thumbnails' support. See https://codex.wordpress.org/Post_Thumbnails

    Thread Starter lc

    (@lortnoc)

    yes, i do have the line on my function :

    add_theme_support('post-thumbnails');

    (not on the functions.php — i have it on other file that i use in order to better organize my code)

    and the post featured images are working. is just the size that i am getting is the large on not the resized one 🙂

    The full image size is still loaded which is unpractical.


    add_theme_support(‘post-thumbnails’);

    is set though.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘The plugin loads the full size images instead of the thumbnails’ is closed to new replies.