Show list based layered nav.
Afficher une liste de navigation en couches.
$term_html, $term, $link, $count
Sortie :
@param array $terms Terms. @param string $taxonomy Taxonomy. @param string $query_type Query Type. @return bool Will nav display?
// HTML filtres personnalisé
add_filter('woocommerce_layered_nav_term_html', 'html_filtres_personnalise', 10, 4);
function html_filtres_personnalise($term_html, $term, $link, $count) {
// Ajouter le nombre de produits de manière plus visible
$term_html = '';
$term_html .= '' . esc_html($term->name) . '';
$term_html .= '(' . absint($count) . ')';
$term_html .= '';
return $term_html;
}
Chargement des actualités...