Skip to content

Instantly share code, notes, and snippets.

@marcobarbosa
Created May 12, 2014 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save marcobarbosa/3c00e4122c57829f5a17 to your computer and use it in GitHub Desktop.
Save marcobarbosa/3c00e4122c57829f5a17 to your computer and use it in GitHub Desktop.
wordpress the loop
<?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