Skip to content

Instantly share code, notes, and snippets.

@psflannery
Created May 15, 2013 11:47
Show Gist options
  • Save psflannery/5583414 to your computer and use it in GitHub Desktop.
Save psflannery/5583414 to your computer and use it in GitHub Desktop.
<?php $recent = new WP_Query("page_id=**ID**"); while($recent->have_posts()) : $recent->the_post();?>
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment