我需要一个 div 来包装 wordpress 循环中的每四个帖子。所以它会像
<div>
four posts
</div>
<div>
four posts
</div>
我当前的代码是这个
<?php
$i = 0;
$wrap_div = "<div class='frak'>";
if ( have_posts() ) {
echo $wrap_div;
while ( have_posts() ) {
the_post();
?>
<div class="wine-section">
<?php the_post_thumbnail(); ?>
<div class="wine-info">
<a href="<?php the_permalink(); ?>"><?php the_title( '<h1>', '</h1>' ); ?></a>
<?php the_meta(); ?>
</div><!-- /wine-info -->
<div class="c"></div>
</div><!-- /wine-section -->
<?php
if ($i % 4 == 0) { echo "</div>" . $wrap_div; }
} // end while
} // end if
$i++;
?>
此代码单独包装每个帖子。有任何想法吗?