特定の記事数の毎に要素の追加
<?php if ( have_posts() ) : $i = 0; while ( have_posts() ) : the_post(); if ( $i % 4 == 0 ) echo '<div class="col clearfix">'; ?> <?php /* ここでループ終了 */ $i++; if ( $i % 4 == 0 ) echo '</div><!-- .col -->'; endwhile; endif; ?>
<?php if ( have_posts() ) : $i = 0; while ( have_posts() ) : the_post(); if ( $i % 4 == 0 ) echo '<div class="col clearfix">'; ?> <?php /* ここでループ終了 */ $i++; if ( $i % 4 == 0 ) echo '</div><!-- .col -->'; endwhile; endif; ?>