我以这种方式插入了更多标签:
继续阅读链接发送至/%postname%/#more-9
,我只需要/%postname%/
。
我应该改变什么? functions.php (wp-incudes和主题文件)中没有“更多”的结果。
答案 0 :(得分:6)
这在" Prevent Page Scroll When Clicking the More Link"下的代码中详细说明,并通过应用过滤器the_content_more_link
进行处理:
function remove_more_link_scroll( $link ) {
$link = preg_replace( '|#more-[0-9]+|', '', $link );
return $link;
}
add_filter( 'the_content_more_link', 'remove_more_link_scroll' );
将此添加到您的主题functions.php