Skip to content

Instantly share code, notes, and snippets.

@denishvachhani
Last active December 19, 2015 22:19
Show Gist options
  • Save denishvachhani/6027041 to your computer and use it in GitHub Desktop.
Save denishvachhani/6027041 to your computer and use it in GitHub Desktop.
Get page content, at any place of theme/plugins
<?php
$id=47; // Id of your Page/Post/CustomPost type
$post = get_page($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment