S
S
Stanislav2017-07-16 07:33:47
WordPress
Stanislav, 2017-07-16 07:33:47

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

3 answer(s)
M
Maksym Davydchuk, 2017-07-16
@maksym1991

Try Arguments

array(
     'per_page' => '12',
      'columns' => '4',
      'orderby' => 'title',
      'order' => 'asc',
      'category' => ''
 )

S
Stanislav, 2017-07-17
@gorodsb

Alas, this shortcode displays only the selected product category, but not its quantity .

W
WordPress WooCommerce, 2017-07-17
@maxxannik

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 question

Ask a Question

731 491 924 answers to any question