Skip to content

Instantly share code, notes, and snippets.

@cliftonc0613
Forked from gregrickaby/even_odd_classes.php
Created September 18, 2016 19:34
Show Gist options
  • Save cliftonc0613/e0fa643ba7dd36943f99c60684e78032 to your computer and use it in GitHub Desktop.
Save cliftonc0613/e0fa643ba7dd36943f99c60684e78032 to your computer and use it in GitHub Desktop.
Even odd classes in WordPress loop
<?php
// WP_Query Arguments
$args = array(
'order' => 'DESC',
'posts_per_page' => 5
);
// The Loop
$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post();
// The count (must be inside the loop)
$count++;
$even_odd_class = ( ($count % 2) == 0 ) ? "even" : "odd";
?>
<div class="<?php echo $even_odd_class; ?>">
<p>Some content</p>
</div>
<?php endwhile; wp_reset_postdata(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment