woocommerce_get_country_locale_base filter-hookWC 1.0

Usage

add_filter( 'woocommerce_get_country_locale_base', 'wp_kama_woocommerce_get_country_locale_base_filter' );

/**
 * Function for `woocommerce_get_country_locale_base` filter-hook.
 * 
 * @param  $locale_default 
 *
 * @return 
 */
function wp_kama_woocommerce_get_country_locale_base_filter( $locale_default ){

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

Where the hook is called

WC_Countries::get_country_locale()
woocommerce_get_country_locale_base
woocommerce/includes/class-wc-countries.php 1651
$this->locale['default']                   = apply_filters( 'woocommerce_get_country_locale_base', $this->locale['default'] );
woocommerce/includes/class-wc-countries.php 1652
$this->locale[ $this->get_base_country() ] = apply_filters( 'woocommerce_get_country_locale_base', $this->locale[ $this->get_base_country() ] );

Where the hook is used in WooCommerce

Usage not found.