Skip to content

Instantly share code, notes, and snippets.

@Aziz-Rahman
Last active August 29, 2015 14:15
Show Gist options
  • Save Aziz-Rahman/f09c3e55e354788d7c5b to your computer and use it in GitHub Desktop.
Save Aziz-Rahman/f09c3e55e354788d7c5b to your computer and use it in GitHub Desktop.
Ganjil genap post wp
<?php while( $wp_query->have_posts() ): $wp_query->the_post();
if ($wp_query->current_post % 2 == 0):
//odd
else:
//even
endif
endwhile
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment