Created
May 1, 2012 19:21
-
-
Save rupert-ong/2570662 to your computer and use it in GitHub Desktop.
Wordpress: Short Loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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