как вывести несколько категорий? в моем случае - "cables" и допустим "PDU"
$args = array(
'posts_per_page' => -1,
'post_type' => 'product',
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => 'cables'
),
),
);
-
Вопрос задан
-
111 просмотров