从wordpress 5.2.0开始,
我们现在可以使用post对象或post idget_the_content
作用
我们还可以传递$more\\u link\\u text和$strip\\u摘要
get_the_content( string $more_link_text = null, bool $strip_teaser = false, WP_Post|object|int $post = null )
我们可以一起使用
apply_filters
如下所示,以获取的所有筛选器
the_content
apply_filters( \'the_content\', get_the_content(null, false, $post_id)),
Reference