我需要选择每个第三个元素,然后在每个第四个元素中选择一个php循环中的wordpress自定义帖子。所以我必须选择3,7,11,15 ......
我实际上选择了每个第三个元素,但这不是我需要的功能所需要的东西:
<?php $counter = 1; ?>
<?php if ( $loop->have_posts() ) : while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php if($counter%3 == 0 : ?>
<p>Do this on the third and from there on on every fourth element</p>
<?php else : ?>
<p>Do something else.</p>
<?php endif; ?>
<?php $counter++; ?>
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>
答案 0 :(得分:2)
请改用:
if( $counter%4 == 3) :