我被这些答案弄糊涂了。
当我有“私人”帖子/页面时,我登录时无法看到它们。我只有当我是管理员时才能看到它们。
关于OP的问题--
我使用WPDB类方法有选择地从数据库中提取post\\U内容,以绕过权限:
global $wpdb; //global wpdb class may not work everywhere...
$post_id = (int) $post_id; // you supply $post_id && make sure int...
$result = $wpdb->get_var("SELECT post_content FROM wp_posts WHERE ID = $post_id");
if(!empty($result)) $result = apply_filters(\'the_content\',$result); //will also execute shortcodes in the content
//do stuff like echo $result