add_shortcode( 'sigma_gift', 'wpdocs_sigma_func' );
function wpdocs_sigma_func() {
global $product;
$content = '';
$args =
array(
'post_type' => 'product',
'numberposts' => -1,
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'term_id',
'terms' => '22',
'operator' => 'IN',
),
),
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
echo "test";
$content .= '


Подробнее здесь: https://stackoverflow.com/questions/782 ... oocommerce