Answer the question
In order to leave comments, you need to log in
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
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question