Created
May 12, 2014 12:17
-
-
Save marcobarbosa/3c00e4122c57829f5a17 to your computer and use it in GitHub Desktop.
wordpress the 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(); | |
// | |
// Post Content here | |
// | |
} // end while | |
} // end if | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment