Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Created April 17, 2018 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeyarce/f33e4f00ac09421c27bccf9934afcaa0 to your computer and use it in GitHub Desktop.
Save mikeyarce/f33e4f00ac09421c27bccf9934afcaa0 to your computer and use it in GitHub Desktop.
Set single image size
<?php
add_filter( 'woocommerce_get_image_size_single', function( $size ) {
return array(
'width' => 500,
'height' => 500,
'crop' => 1,
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment