如果我点击“继续阅读”'链接, wordpress 中的 more 选项,它将转到特定位置。请参阅Link。
但我需要去帖子的顶部或页面顶部。 怎么办?
答案 0 :(得分:0)
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' );