Skip to content

Instantly share code, notes, and snippets.

@richerimage
Created July 1, 2016 08:26
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 richerimage/f94b464560faa95dded2eea647d70f64 to your computer and use it in GitHub Desktop.
Save richerimage/f94b464560faa95dded2eea647d70f64 to your computer and use it in GitHub Desktop.
Get Content from Post ID
$post_id = 7;
echo apply_filters('the_content', get_post_field('post_title', $post_id));
echo get_post_field('post_content', $post_id));
echo get_post_meta($post_id, 'thesis_thumb_height', true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment