duskosobic
1/25/2017 - 2:50 PM

Get Content by ID. Apparently there is no succinct WordPress function for just returning the content of a particular page by the ID of that

Get Content by ID. Apparently there is no succinct WordPress function for just returning the content of a particular page by the ID of that page. This is that.

<?php
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;
}
?>