woocommerce_brands_list_numbers, 0-9

woocommerce_brands_list_numbers, 0-9

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

apply_filters('woocommerce_brands_list_numbers, 0-9') is found 1 times:

  • /includes/class-wc-brands.php line 628
    		$product_brands = array();
            //phpcs:disable
    		$terms          = get_terms( array( 'taxonomy' => 'product_brand', 'hide_empty' => ( $show_empty_brands ? false : true ) ) );
    		$alphabet       = apply_filters( 'woocommerce_brands_list_alphabet', range( 'a', 'z' ) );
    		$numbers        = apply_filters( 'woocommerce_brands_list_numbers', '0-9' );
    
    		foreach ( $terms as $term ) {
    			$term_letter = $this->get_brand_name_first_character( $term->name );
    
    			// Allow a locale to be set for ctype_alpha().
    			if ( has_filter( 'woocommerce_brands_list_locale' ) ) {