Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Last active August 29, 2015 13:58
Show Gist options
  • Save fieldoffice/10232399 to your computer and use it in GitHub Desktop.
Save fieldoffice/10232399 to your computer and use it in GitHub Desktop.
WordPress include page content snippet
<?php query_posts('page_id=');
if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php echo the_content(); endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment