这似乎是一个微不足道的问题,但我无法解决。我需要添加class="last"
每三个岗位。
这是我的代码:
<?php
$count = 0;
$my_query = new WP_Query(\'cat=-18,-7&showposts=9\');
while ($my_query->have_posts()) : $my_query->the_post();
?>
<article class="<?php if ($count % 3 == 0) { echo "last "; }" ?>> </article>
<?php
$count++;
endwhile;
?>