<?php
//НАЧАЛО СПИСКА
$categories = get_terms( [
'taxonomy' => 'product-cat',
'meta_key' => 'vyvodit_na_strai',
'meta_value' => 'yes',
'fields' => 'ids',
] );
if( $categories ){
foreach( $categories as $cat ){
$arg_posts = array(
'post_type' => 'product',
'posts_per_page' => 3,
'tax_query' => array(
array(
'taxonomy' => 'product-cat',
'terms' => $categories
) )
);
$query = new WP_Query($arg_posts);
if ($query->have_posts() ) : ?>