Skip to content

Instantly share code, notes, and snippets.

@ElmahdiMahmoud
Last active December 26, 2015 18:09
Show Gist options
  • Select an option

  • Save ElmahdiMahmoud/7192808 to your computer and use it in GitHub Desktop.

Select an option

Save ElmahdiMahmoud/7192808 to your computer and use it in GitHub Desktop.
wp: get page content by ID
<?php
$id = #;
$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