您只需要设置the_content()
到空字符串:
<?php the_content( \'\' ); ?>
如果不传递参数,它将使用默认值,即与文本“(更多…)的链接,但通过传递空字符串,将显示空字符串(即nothing)。
如果要将其包含在变量中,请使用get_the_content( \'\' )
同样,为了使格式正确匹配,您需要应用the_content
过滤器:
$excerpt = apply_filters( \'the_content\', get_the_content( \'\' ) );