Здравствуйте, уважаемые форумчане! Подскажите пожалуй в проблеме, как скрывать товары из дочерних категорий в перечне товаров родительской категории.
Код не помог:
// Не выводим товары дочерних категорий
function custom_pre_get_posts_query( $query ) {
$children = get_term_children( $query->queried_object_id , 'product_cat' );
$tax = $query->get( 'tax_query');
$tax[] = array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $children,
'operator' => 'NOT IN',
);
$query->set( 'tax_query', $tax );
}
add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );
Спасибо!
Код не помог:
// Не выводим товары дочерних категорий
function custom_pre_get_posts_query( $query ) {
$children = get_term_children( $query->queried_object_id , 'product_cat' );
$tax = $query->get( 'tax_query');
$tax[] = array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $children,
'operator' => 'NOT IN',
);
$query->set( 'tax_query', $tax );
}
add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );
Спасибо!