This is the code I use, and the result i s blank:
$postID = 15;
$thePost = get_post($postID);
echo $thePost->post_content;
If I change post_content to post_title, it ouputs the title.
This is the code I use, and the result i s blank:
$postID = 15;
$thePost = get_post($postID);
echo $thePost->post_content;
If I change post_content to post_title, it ouputs the title.
do a var_dump to see what is going on
$postID = 15;
$thePost = get_post($postID);
echo $thePost->post_content;
var_dump($thePost);
You must log in to post.