Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Last active September 14, 2017 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonglisson/edb88a8780a447a295776020be3a6746 to your computer and use it in GitHub Desktop.
Save jasonglisson/edb88a8780a447a295776020be3a6746 to your computer and use it in GitHub Desktop.
Wordpress - Print out content in a page template
<?php
while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop -->
<div class="entry-content-page">
<?php the_content(); ?> <!-- Page Content -->
</div><!-- .entry-content-page -->
<?php
endwhile; //resetting the page loop
wp_reset_query(); //resetting the page query
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment