Skip to content

Instantly share code, notes, and snippets.

@bradp
Created October 24, 2012 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradp/3947768 to your computer and use it in GitHub Desktop.
Save bradp/3947768 to your computer and use it in GitHub Desktop.
Display WordPress Page by title
$page = get_page_by_title( 'Home' );
$post_id_home = get_post($page->ID);
$content = $post_id_home->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment