Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function woo_custom_single_image_size ( $size ) {
  2. $size['height'] = 180;
  3. $size['width'] = 180;
  4. $size['crop'] = 1;
  5. return $size;
  6. }
  7.  
  8. add_filter('woocommerce_get_image_size_gallery_thumbnail', 'woo_custom_single_image_size', 50, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement