<?php
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$this_cat_ID = $term->term_id;
$args = array(
'type' => 'product',
'orderby' => 'order',
'parent' => $this_cat_ID,
'taxonomy' =>...
Как в цикле ограничить вывод товаров определенной категории?
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$this_cat_ID = $term->term_id;
$args = array(
'type' => 'product',
'orderby' => 'order',
'parent' => $this_cat_ID,
'taxonomy' =>...
Как в цикле ограничить вывод товаров определенной категории?