woocommerce_single_product_photoswipe_options
Использование
add_filter( 'woocommerce_single_product_photoswipe_options', 'wp_kama_woocommerce_single_product_photoswipe_options_filter' ); /** * Function for `woocommerce_single_product_photoswipe_options` filter-hook. * * @param $array * * @return */ function wp_kama_woocommerce_single_product_photoswipe_options_filter( $array ){ // filter... return $array; }
- $array
- -
Где вызывается хук
woocommerce_single_product_photoswipe_options
woocommerce/includes/class-wc-frontend-scripts.php 528-537
'photoswipe_options' => apply_filters( 'woocommerce_single_product_photoswipe_options', array( 'shareEl' => false, 'closeOnScroll' => false, 'history' => false, 'hideAnimationDuration' => 0, 'showAnimationDuration' => 0, ) ),