woocommerce_countries_shipping_to_prefix хук-фильтрWC 1.0

Использование

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
-

Где вызывается хук

WC_Countries::shipping_to_prefix()
woocommerce_countries_shipping_to_prefix
woocommerce/includes/class-wc-countries.php 466
return apply_filters( 'woocommerce_countries_shipping_to_prefix', $return, $country_code );

Где используется хук в WooCommerce

Использование не найдено.