Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created February 11, 2013 19:16
Show Gist options
  • Save jlittlejohn/4756814 to your computer and use it in GitHub Desktop.
Save jlittlejohn/4756814 to your computer and use it in GitHub Desktop.
WP: Basic Loop
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
// code
<?php endwhile; endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment