我需要一个交替的(偶数,奇数…)在帖子上上课,在专栏上提供其他亮点。最好的办法是将其附加到post_类()上,以便它位于post_类()的每个实例上。下面是我在这一点上实现这一效果的代码。
<?php
// setting other variables for alternating categories
$style_classes = array(\'even\', \'odd\');
$style_counter = 0;
?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="<?php $k = $style_counter%2; echo $style_classes[$k]; $style_counter++; ?>">
<?php the_cotent(); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>