我想为这个WP循环的每3次迭代添加一个style="background:green"。
我该如何实现这一点?
if( have_posts() ) :
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
<li>Test</li>
<?php endwhile; ?>
<?php endif;非常感谢您的指点。
发布于 2011-09-20 16:45:10
也许是一个递增的变量和模运算符的使用,这只是一个想法。http://php.net/manual/en/language.operators.arithmetic.php,类似于WP的东西:http://www.ilovecolors.com.ar/ads-wordpress-loop/
https://stackoverflow.com/questions/7482288
复制相似问题