woocommerce_brands_list_locale filter-hookWC 1.0

Usage

add_filter( 'woocommerce_brands_list_locale', 'wp_kama_woocommerce_brands_list_locale_filter' );

/**
 * Function for `woocommerce_brands_list_locale` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_woocommerce_brands_list_locale_filter( $string ){

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

Where the hook is called

WC_Brands::output_product_brand_list()
woocommerce_brands_list_locale
woocommerce/includes/class-wc-brands.php 553
setLocale( LC_CTYPE, apply_filters( 'woocommerce_brands_list_locale', 'en_US.UTF-8' ) );

Where the hook is used in WooCommerce

Usage not found.