Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Last active February 13, 2024 07:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taniarascia/75c8fd62cd3cfdbb4008 to your computer and use it in GitHub Desktop.
Save taniarascia/75c8fd62cd3cfdbb4008 to your computer and use it in GitHub Desktop.
Post the contents of one page on another page
<?php
$include = get_pages('include=6'); // Insert page number here
$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