Design Theme:
'product',
'tax_query' => array(
array(
'taxonomy' => 'design-theme',
'field' => 'slug',
'terms' => $term->slug,
),
),
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
wc_get_template_part('content', 'product'); // For WooCommerce product display
endwhile;
wp_reset_postdata();
else :
echo '
No products found under this theme.
'; endif; ?>