Skip to content

Instantly share code, notes, and snippets.

@AbhishekGhosh
Created June 23, 2020 17:59
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 AbhishekGhosh/d3e9dc2060bac477a9f8bc0a79e20c70 to your computer and use it in GitHub Desktop.
Save AbhishekGhosh/d3e9dc2060bac477a9f8bc0a79e20c70 to your computer and use it in GitHub Desktop.
WordPress show post content example with page ID 5670
<?php
$id = 5670;
$p = get_page($id);
echo apply_filters('the_content', $p->post_content);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment