woocommerce_twenty_seventeen_styles
Использование
add_filter( 'woocommerce_twenty_seventeen_styles', 'wp_kama_woocommerce_twenty_seventeen_styles_filter' );
/**
* Function for `woocommerce_twenty_seventeen_styles` filter-hook.
*
* @param $styles
*
* @return
*/
function wp_kama_woocommerce_twenty_seventeen_styles_filter( $styles ){
// filter...
return $styles;
}
- $styles
- -
Где вызывается хук
woocommerce_twenty_seventeen_styles
woocommerce/includes/theme-support/class-wc-twenty-seventeen.php 59
return apply_filters( 'woocommerce_twenty_seventeen_styles', $styles );