Add CSS code to list item for every 3rd loop in WP
-
Hi,
I have this code:
if( have_posts() ) : while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <li>Test</li> <?php endwhile; ?> <?php endif;
Now after every 3rd loop, I’d like to add
style="background:red"
to my list item.How do I do this?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add CSS code to list item for every 3rd loop in WP’ is closed to new replies.