woocommerce_subcategory_count_html

FILTER woocommerce\includes\wc-template-functions.php (ligne 1226) github
Show the subcategory title in the product loop.

Paramètres

Entrée :
' (' . esc_html( $category->count
Sortie :
@param object $category Category object.

Utilisation

// 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;
}

Actualités

Chargement des actualités...