Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created October 15, 2012 20:05
Show Gist options
  • Save hsquareweb/3894991 to your computer and use it in GitHub Desktop.
Save hsquareweb/3894991 to your computer and use it in GitHub Desktop.
WP: Simple Loop
<?php while (have_posts()) : the_post(); ?>
<h1 class="entry-title"><a href="<?php the_permalink();?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<?php the_content();?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment