Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created July 29, 2015 16:18
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 taniarascia/c5f3c9161e40ab27d2be to your computer and use it in GitHub Desktop.
Save taniarascia/c5f3c9161e40ab27d2be to your computer and use it in GitHub Desktop.
Display a particular page's loop
<?php $my_query = new WP_Query('page_id=87');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>
<div class="entry">
<?php the_content('read more &raquo;'); ?>
</div>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment