Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save billrobbins/1472956 to your computer and use it in GitHub Desktop.
Save billrobbins/1472956 to your computer and use it in GitHub Desktop.
Add Content From Specific Page
<?php if (is_home()) { ?>
<?php
// Query for Home Page Content
$the_query = new WP_Query( 'pagename=home' );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile;
// Reset Post Data
wp_reset_postdata();
?>
<div class="clear"></div>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment