Skip to content

Instantly share code, notes, and snippets.

@sagarjadhav
Created November 13, 2016 08:57
Show Gist options
  • Save sagarjadhav/6aef5a494404e12f6edf6d66bdc2e9a4 to your computer and use it in GitHub Desktop.
Save sagarjadhav/6aef5a494404e12f6edf6d66bdc2e9a4 to your computer and use it in GitHub Desktop.
Get content by page ID
<?php
/*
* Get content by page ID
*/
function marvy_the_content_by_id( $id ) {
if ( isset( $id ) && 0 != $id ) {
global $post;
$post = get_post( $id );
setup_postdata( $post );
the_content();
wp_reset_postdata( $post );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment