hsquareweb
6/28/2013 - 3:28 PM

WP: Pull Specific Page

WP: Pull Specific Page

		<?php $recent = new WP_Query("page_id=87"); while($recent->have_posts()) : $recent->the_post();?>
      <?php the_post_thumbnail('full'); ?>
      <div>
      	<h1><?php the_title(); ?></h1>
      	<?php the_content(); ?>
      </div>
		<?php endwhile; ?>