在 Wordpress 4.1 中更改 "Read more" link 以防止 scroll/remove "more-X" 哈希
Change "Read more" link in Wordpress 4.1 to prevent scroll/remove "more-X" hash
我这样插入阅读更多标签:
继续阅读link发给/%postname%/#more-9
,我只需要/%postname%/
.
我应该更改什么以及在哪里更改?在 functions.php(wp-incudes 和主题文件)中没有关于“more”的结果。
这在“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
我这样插入阅读更多标签:
继续阅读link发给/%postname%/#more-9
,我只需要/%postname%/
.
我应该更改什么以及在哪里更改?在 functions.php(wp-incudes 和主题文件)中没有关于“more”的结果。
这在“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