• I’ve been digging through the different settings to try and figure out how to make my post’s thumbnails (on the homepage) show up as square instead of slightly off-square.

    The reason I ask is because I run an audiobook review site and all of the cover images are square and I would like to show the whole cover.

Viewing 1 replies (of 1 total)
  • You can open functions.php file and copy the contents of wisteria_setup function into a function within your child theme functions.php file, like so:

    function wisteria_setup() {
        // paste contents of the wisteria_setup function here
    }
    add_action('after_setup_theme', 'wisteria_setup');

    You can make one small adjustment to this function like so:

    add_image_size('wisteria-featured', 334, 334, true);

    You then need to regenerate your thumbnails, the theme will then begin displaying 334px square images instead of slightly rectangular images.

    Hope this helps.

    • This reply was modified 7 years, 11 months ago by ThemeSumo. Reason: typo
Viewing 1 replies (of 1 total)
  • The topic ‘Make Post Thumbnails Square?’ is closed to new replies.