Есть верстка на Bootstrap.Как вывести посты в WP, если у первого поста есть col-lg-offset-1, а у след. нету отступов.И у каждого блока внутри свой отдельный класс, на который backgroundом навешана картинка.
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<div class="tour_block_cel col-lg-2 col-lg-offset-1 col-sm-6 col-xs-12">
<div class="block_tour">
<div class="img_tour1 text-center">
<a href="#"><span class="caret"></span></a>
<p class="button"><a class="btn btn-success" role="button">book now</a></p>
</div>
<div class="text_tour text-left">
<h3><?php the_title(); ?></h3>
<p><?php the_excerpt() ?></p>
</div>
</div>
</div>
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>