woocommerce_brands_list_numbers filter-hookWC 1.0

Usage

add_filter( 'woocommerce_brands_list_numbers', 'wp_kama_woocommerce_brands_list_numbers_filter' );

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

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

Where the hook is called

WC_Brands::output_product_brand_list()
woocommerce_brands_list_numbers
woocommerce/includes/class-wc-brands.php 539
$numbers        = apply_filters( 'woocommerce_brands_list_numbers', '0-9' );

Where the hook is used in WooCommerce

Usage not found.