I'd like to add a style="background:green" for every 3rd iteration of this WP loop.
How do I achieve this?
if( have_posts() ) :
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
<li>Test</li>
<?php endwhile; ?>
<?php endif;
Many thanks for any pointers.