最近用新的WordPress主題發現點擊閱讀更多…
結果進入內容頁面會多出 # 錨點 問題,讓使用者畫面都會跑掉
可以進入wordpress資料夾 -> wp-content -> theme -> 目前使用的主題 ->functions.php
1 2 3 4 5 |
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' ); |
完成後在點擊more就不會出現錨點
Reference