开发者

How to make this "loop" pattern on wordpress?

开发者 https://www.devze.com 2023-04-11 02:57 出处:网络
Is anybody know how to make loop with this pattern in wordpress? <div class=\"row\"> <div class=\"post1\">...</div>

Is anybody know how to make loop with this pattern in wordpress?

<div class="row">
    <div class="post1">...</div>
    <div class="post2">...</div>
</div>
<div class="row开发者_开发技巧">
    <div class="post3">...</div>
    <div class="post4">...</div>
</div>
<div class="row">
    <div class="post5">...</div>
</div>

Thanks.


<?php 
$odd = true;
while ( have_posts() ) : the_post(); 
if($odd){ ?>
    <div class="row">
<?php } ?>
        <div class="post<?php the_ID(); ?>">
        <!-- contents -->
        </div>
<?php if(!$odd){ ?>
    </div>
<?php } 
$odd = !$odd;
endwhile;

if(!$odd){ ?>
    </div>
<?php } 
?>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号