K
K
kolibry12016-12-09 18:26:58
PHP
kolibry1, 2016-12-09 18:26:58

How to display multiple woocommerce categories?

how to display multiple categories? in my case - "cables" and let's say "PDU"
$args = array(
'posts_per_page' => -1,
'post_type' => 'product',
'tax_query' => array(
array(
'taxonomy' => 'product_cat ',
'field' => 'slug',
'terms' => 'cables'
),
​​),
);

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Pavel, 2016-12-09
@kolibry1

'terms' => array('cables','PDU')

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question