Wordpress Loop / The Loop
<!-- WordPress Loop --> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php the_content(); ?> <?php endwhile; ?> <?php endif; ?> <!-- End WordPress Loop -->