• Hello!
    I dont like these huge standard thumbs. The biggest size I need is 200×200. I’ve been searching alot and there is no clear answer how to change thumbnail size. Adding in functions.php child theme my custom values:

    if ( ! function_exists( 'hu_setup' ) ) {
      function hu_setup() {
    // Thumbnail sizes
        add_image_size( 'thumb-small', 120, 120, true );
        add_image_size( 'thumb-standard', 200, 200, true );
        add_image_size( 'thumb-medium', 160, 160, true );
        add_image_size( 'thumb-large', 200, 200, true );
    }

    and regenerating thumbnails after that <u>gives nothing!</u> (it seems there is some auto-scaling feature implemented a couple of months ago, huh?)
    I see many users have such problem, so please, answer: How do we change thumbnail size?

    • This topic was modified 8 years, 11 months ago by maximdonskov.

The topic ‘Thumbnail size change’ is closed to new replies.