woocommerce_layered_nav_count
Использование
add_filter( 'woocommerce_layered_nav_count', 'wp_kama_woocommerce_layered_nav_count_filter', 10, 3 ); /** * Function for `woocommerce_layered_nav_count` filter-hook. * * @param $html * @param $count * @param $term * * @return */ function wp_kama_woocommerce_layered_nav_count_filter( $html, $count, $term ){ // filter... return $html; }
- $html
- -
- $count
- -
- $term
- -
Где вызывается хук
woocommerce/includes/widgets/class-wc-widget-layered-nav.php 457
$term_html .= ' ' . apply_filters( 'woocommerce_layered_nav_count', '<span class="count">(' . absint( $count ) . ')</span>', $count, $term );