WordPress loop


<?php while ( have_posts() ) : the_post(); // start the loop ?>

<h1><?php the_title(); ?></h1>

<div><?php the_content(); ?></div>

<?php endwhile; // end the loop ?>

Leave a Comment