Skip to content

Instantly share code, notes, and snippets.

@roggel-gists
Created November 7, 2012 15:44
Show Gist options
  • Save roggel-gists/4032348 to your computer and use it in GitHub Desktop.
Save roggel-gists/4032348 to your computer and use it in GitHub Desktop.
wp_loop
<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content();?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment