如上所述in the docs, 如果quicktag<!--more-->
在帖子中用于指定要摘录的帖子的“截止”点,the_content()
标记将仅显示摘录到<!--more-->
非单一/非永久链接帖子页面上的quicktag点。
WordPress添加<span id="more-\' . $post->ID . \'"></span>
本例中的内容。因为<span>
(check out the code), 您可以轻松删除<span>
通过过滤内容:
add_filter( \'the_content\', function( $content ) {
return str_replace( \'<span id="more-\' . get_the_ID() . \'"></span>\', \'\', $content );
}
请注意,这会导致“阅读更多”链接不会跳转到插入的区域
<!--more-->
不再实现这一点的更简单方法是使用
the_content_more_link
过滤并移除
#more-<post_id>
从那里分离。有几个
examples in the Codex 为此。