Skip to content

Instantly share code, notes, and snippets.

@raewrites
Created June 29, 2016 07:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raewrites/1bf2f515b875bacac9f8fab89692f7a8 to your computer and use it in GitHub Desktop.
Save raewrites/1bf2f515b875bacac9f8fab89692f7a8 to your computer and use it in GitHub Desktop.
The WordPress Loop
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
//
// Post Content here
//
endwhile; // end while
endif; // end if
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment