Answer the question
In order to leave comments, you need to log in
How to display number of products in woocommerce category?
<h2><a href="#">Тут произвольное название </a>а тут число товаров в данной категории</h2>
Answer the question
In order to leave comments, you need to log in
The number of products available in the WP_Term object of this category:
$category = get_term( TERM_ID, 'product_cat' ); // если известен ID категории, или же:
$category = get_term_by( 'slug', TERM_SLUG, 'product_cat' ); // если надо по слагу категории
echo $category->count;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question