hsquareweb
10/15/2012 - 8:05 PM

WP: Simple Loop

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; ?>