Skip to content

Instantly share code, notes, and snippets.

@richerimage
Last active May 16, 2016 04:55
Show Gist options
  • Save richerimage/ffe76bf1a1d6d08ec452625e8d9887cc to your computer and use it in GitHub Desktop.
Save richerimage/ffe76bf1a1d6d08ec452625e8d9887cc to your computer and use it in GitHub Desktop.
Get post/Page content by ID
<?php
$id = '123';
echo get_post_field('post_content', $id);
// Want it formatted?
echo apply_filters('the_content', get_post_field('post_content', $id));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment