woocommerce_gallery_full_size
Filters the size for the full gallery image.
Usage
add_filter( 'woocommerce_gallery_full_size', 'wp_kama_woocommerce_gallery_full_size_filter' );
/**
* Function for `woocommerce_gallery_full_size` filter-hook.
*
* @param string $size Image size name.
*
* @return string
*/
function wp_kama_woocommerce_gallery_full_size_filter( $size ){
// filter...
return $size;
}
- $size(string)
- Image size name.
Changelog
| Since 2.6.0 | Introduced. |
Where the hook is called
woocommerce_gallery_full_size
woocommerce_gallery_full_size
woocommerce/includes/wc-product-functions.php 1231
$full_size = apply_filters( 'woocommerce_gallery_full_size', apply_filters( 'woocommerce_product_thumbnails_large_size', 'full' ) );
woocommerce/includes/wc-template-functions.php 1815
$full_size = apply_filters( 'woocommerce_gallery_full_size', apply_filters( 'woocommerce_product_thumbnails_large_size', 'full' ) );