Skip to content

Instantly share code, notes, and snippets.

@mkdizajn
Created May 20, 2013 12:52
Show Gist options
  • Save mkdizajn/5612031 to your computer and use it in GitHub Desktop.
Save mkdizajn/5612031 to your computer and use it in GitHub Desktop.
wordpress function to get page content by ID
<?php
// mk function to get page content by id!
// function() -> takes post ID
function mk_get_page_content_by_id( $pid ){
$page_id = $pid;
$page_data = get_page( $page_id );
$content = apply_filters('the_content', $page_data->post_content);
echo $content;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment