<?php if ( have_posts() ) : query_posts('cat=2');
while ( have_posts() ) : the_post(); ?>
<div class="product_item">
<div class="product_circle">
<?php echo get_the_post_thumbnail(); ?>
<img src="img/bag_1.jpg" data-img="<?php echo get_post_meta( $post->ID, 'color', true ); ?>" alt="">
</div>
<div class="colors">
<!-- <div data-img="<?php echo get_post_meta( $post->ID, 'color', true ); ?>"></div> -->
<div class="red"></div>
</div>
</div>
<?php endwhile; endif; wp_reset_query(); ?>
Подскажите, пожалуйста, как мне обернуть div class="colors" в отдельный цикл? В этом коде я вывел категорию, а могу я ее под категорию вывести циклом внутри??