Skip to content

Instantly share code, notes, and snippets.

@rupert-ong
Created May 1, 2012 19:21
Show Gist options
  • Save rupert-ong/2570662 to your computer and use it in GitHub Desktop.
Save rupert-ong/2570662 to your computer and use it in GitHub Desktop.
Wordpress: Short Loop
<?php
if (have_posts()) : while (have_posts()) : the_post();
the_content('Read the rest of this entry »');
?>
<?php
endwhile;
else:
echo 'Sorry, no posts were found.';
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment