plugin_locale
Filter to adjust the WooCommerce locale to use for translations.
Usage
add_filter( 'plugin_locale', 'wp_kama_plugin_locale_filter', 10, 2 );
/**
* Function for `plugin_locale` filter-hook.
*
* @param $determine_locale
* @param $string
*
* @return
*/
function wp_kama_plugin_locale_filter( $determine_locale, $string ){
// filter...
return $determine_locale;
}
- $determine_locale
- -
- $string
- -
Where the hook is called
plugin_locale
woocommerce/includes/class-woocommerce.php 972
$locale = apply_filters( 'plugin_locale', determine_locale(), 'woocommerce' ); // phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingSinceComment
Where the hook is used in WooCommerce
woocommerce/includes/wc-core-functions.php 2176
add_filter( 'plugin_locale', 'get_locale' );
woocommerce/includes/wc-core-functions.php 2196
remove_filter( 'plugin_locale', 'get_locale' );