假设您在循环中,或者知道(或知道如何获得)$post
对象:
function wpse63358_get_post_content() {
global $post;
return $post->post_content;
}
如果要格式化帖子内容,请替换此内容:
return $post->post_content;
。。。使用此选项:
return apply_filters( \'the_content\', $post->post_content );
要回显函数输出:
echo wpse63358_get_post_content();
编辑注意:如果您只想在模板中输出帖子内容,实际上甚至不需要将其包装到函数中。简单使用:
global $post;
echo apply_filters( \'the_content\', $post->post_content );