default-blog

Get Content by ID in WordPress

Apparently there is no succinct WordPress function for just returning the content of a particular page by the ID of that page. This article will show you how to do it:

function get_the_content_by_id($post_id) {
  $page_data = get_page($post_id);
  if ($page_data) {
    return $page_data->post_content;
  }
  else return false;
}
Posted in

Leave a Comment