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

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

add_filter( 'woocommerce_countries_estimated_for_prefix', 'wp_kama_woocommerce_countries_estimated_for_prefix_filter', 10, 2 );

/**
 * Function for `woocommerce_countries_estimated_for_prefix` filter-hook.
 * 
 * @param  $return       
 * @param  $country_code 
 *
 * @return 
 */
function wp_kama_woocommerce_countries_estimated_for_prefix_filter( $return, $country_code ){

	// filter...
	return $return;
}
$return
-
$country_code
-

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

WC_Countries::estimated_for_prefix()
woocommerce_countries_estimated_for_prefix
woocommerce/includes/class-wc-countries.php 480
return apply_filters( 'woocommerce_countries_estimated_for_prefix', $return, $country_code );

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

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