Answer the question
In order to leave comments, you need to log in
How to display the number of products of a certain Woocommerce category in a post/page using a shortcode?
How to display the number of products of a certain Woocommerce category in a post (or page) using a shortcode?
Answer the question
In order to leave comments, you need to log in
Try
Arguments
array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'title',
'order' => 'asc',
'category' => ''
)
Alas, this shortcode displays only the selected product category, but not its quantity .
theses:
- add_shortcode - to create a shortcode.
- $terms = get_terms($args) - query for taxonomy terms, see docs for arguments.
- echo count($terms) - to show the number of received posts based on the query
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question