woocommerce_countries_shipping_to_prefix
Использование
add_filter( 'woocommerce_countries_shipping_to_prefix', 'wp_kama_woocommerce_countries_shipping_to_prefix_filter', 10, 2 );
/**
* Function for `woocommerce_countries_shipping_to_prefix` filter-hook.
*
* @param $return
* @param $country_code
*
* @return
*/
function wp_kama_woocommerce_countries_shipping_to_prefix_filter( $return, $country_code ){
// filter...
return $return;
}
- $return
- -
- $country_code
- -
Где вызывается хук
woocommerce_countries_shipping_to_prefix
woocommerce/includes/class-wc-countries.php 496
return apply_filters( 'woocommerce_countries_shipping_to_prefix', $return, $country_code );