Show the subcategory title in the product loop.
' (' . esc_html( $category->count
Sortie :
@param object $category Category object.
// Modifier la valeur avec le filtre 'woocommerce_subcategory_count_html'
add_filter('woocommerce_subcategory_count_html', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(' (' . esc_html( $category->count) {
// Modifier la valeur
return ' (' . esc_html( $category->count;
}
Chargement des actualités...