Created
November 9, 2013 10:32
-
-
Save alexadark/7384112 to your computer and use it in GitHub Desktop.
Wordpress: loop
This file contains 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(); ?> | |
<?php endwhile; else: ?> | |
<p>There are no posts or page here</p> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment