Last active
September 14, 2017 12:41
-
-
Save jasonglisson/edb88a8780a447a295776020be3a6746 to your computer and use it in GitHub Desktop.
Wordpress - Print out content in a page template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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