M
M
Mikhail Ivanov2017-10-11 17:31:48
WordPress
Mikhail Ivanov, 2017-10-11 17:31:48

How to display number of products in woocommerce category?

<h2><a href="#">Тут произвольное название </a>а тут число товаров в данной категории</h2>

how to display the number of products, maybe there is a shortcode so that you can specify the category id and get the number of products in this category by id

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Igor Vorotnev, 2017-10-11
@mishaweb

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 question

Ask a Question

731 491 924 answers to any question