Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created August 20, 2014 07:04
Show Gist options
  • Save ABooooo/4bfd49cce7ce08f7f150 to your computer and use it in GitHub Desktop.
Save ABooooo/4bfd49cce7ce08f7f150 to your computer and use it in GitHub Desktop.
Include page
<?php
$include = get_pages('include=5');
$title = apply_filters('the_title',$include[0]->post_title);
echo $title;
$include = get_pages('include=5');
$content = apply_filters('the_content',$include[0]->post_content);
echo $content;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment