Title: Make Post Thumbnails Square?
Last modified: December 6, 2016

---

# Make Post Thumbnails Square?

 *  [BrianBeerGod](https://wordpress.org/support/users/brianbeergod/)
 * (@brianbeergod)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/make-post-thumbnails-square/)
 * 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)

 *  [ThemeSumo](https://wordpress.org/support/users/themesumo/)
 * (@themesumo)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/make-post-thumbnails-square/#post-8528419)
 * 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](https://wordpress.org/plugins/force-regenerate-thumbnails/),
   the theme will then begin displaying 334px square images instead of slightly 
   rectangular images.
 * Hope this helps.
    -  This reply was modified 9 years, 5 months ago by [ThemeSumo](https://wordpress.org/support/users/themesumo/).
      Reason: typo

Viewing 1 replies (of 1 total)

The topic ‘Make Post Thumbnails Square?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/wisteria/1.1.5/screenshot.png)
 * Wisteria
 * [Support Threads](https://wordpress.org/support/theme/wisteria/)
 * [Active Topics](https://wordpress.org/support/theme/wisteria/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/wisteria/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/wisteria/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [ThemeSumo](https://wordpress.org/support/users/themesumo/)
 * Last activity: [9 years, 5 months ago](https://wordpress.org/support/topic/make-post-thumbnails-square/#post-8528419)
 * Status: not resolved