更改Wordpress 4.1中的“阅读更多”链接以防止滚动/删除“more-X”哈希

时间:2015-01-05 08:15:17

标签: wordpress

我以这种方式插入了更多标签:

insert read more tag

继续阅读链接发送至/%postname%/#more-9,我只需要/%postname%/

我应该改变什么? functions.php (wp-incudes和主题文件)中没有“更多”的结果。

1 个答案:

答案 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