Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IkeTen/8012130b133a3a1ec0b9536f15a8555a to your computer and use it in GitHub Desktop.
Save IkeTen/8012130b133a3a1ec0b9536f15a8555a to your computer and use it in GitHub Desktop.
Detect the last post in the WordPress loop
<?php if (($wp_query->current_post +1) == ($wp_query->post_count)) {
echo 'This is the last post';
} ?>
<?php if (($wp_query->current_post +1) != ($wp_query->post_count)) {
echo 'This is the not the last post';
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment