我使用下面的代码调用自定义post类型post的\\u内容,但运行它时,它总是获取当前页面内容,而不是指定ID的页面。无论我在哪里使用它,它都会复制我的页面。但当通过帖子中的短代码使用时,它可以完美地工作:
$id=12;
$post = get_post($id);
$content = apply_filters(\'the_content\', $post->post_content);
echo $content;
获取此错误:
Attempt to read property "post_content" on null