woocommerce_layered_nav_count

woocommerce_layered_nav_count

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_layered_nav_count') is found 1 times:

  • /includes/widgets/class-wc-widget-layered-nav.php line 457
    				$link      = false;
    				$term_html = '<span>' . esc_html( $term->name ) . '</span>';
    			}
    
    			$term_html .= ' ' . apply_filters( 'woocommerce_layered_nav_count', '<span class="count">(' . absint( $count ) . ')</span>', $count, $term );
    
    			echo '<li class="woocommerce-widget-layered-nav-list__item wc-layered-nav-term ' . ( $option_is_set ? 'woocommerce-widget-layered-nav-list__item--chosen chosen' : '' ) . '">';
    			// phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.EscapeOutput.OutputNotEscaped
    			echo apply_filters( 'woocommerce_layered_nav_term_html', $term_html, $term, $link, $count );
    			echo '</li>';
    		}