{"generator":"Code Snippets v2.10.1.1","date_created":"2018-04-24 07:55","snippets":[{"name":"WooCommerce Thumbnails","scope":"global","code":"if ( ! function_exists( 'ultra_woocommerce_single_gallery_thumbnail_size' ) ) :\r\n\/**\r\n * Change the gallery thumbnail image size.\r\n * @link https:\/\/github.com\/woocommerce\/woocommerce\/wiki\/Customizing-image-sizes-in-3.3-\r\n *\/\r\nfunction ultra_woocommerce_single_gallery_thumbnail_size( $size ) {\r\n    return array(\r\n        'width'  => 150,\r\n        'height' => 100,\r\n        'crop'   => 1,\r\n    );\t\r\n}\r\nendif;\r\nadd_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'ultra_woocommerce_single_gallery_thumbnail_size' );"}]}