サイトアイコン アラコキからの Raspberry Pi 電子工作

Twenty Seventeen 「続きを読む」をクリックした時、ページの先頭にジャンプ

WordPress Twenty Seventeen
画面制御ボタンのカスタマイズ
「続きを読む」をページのTOPにする
 
WordPressでは「続きを読む」をクリックした場合、まさにその続きの場所から表示される。これを『利便性』の観点から、ページの先頭から表示されるように変更する。
 

 

スポンサー リンク

 

 
 
functions.php に処理を追加
 
以下のコードを、子テーマの functions.php に追記するだけでOK。
/*-----------------------------------------------------------*/
/* more-linkの#moreを消しページの先頭に変更 */
/*-----------------------------------------------------------*/
function remove_more_jump_link($link) {
  $offset = strpos($link, '#more-');
  if ($offset) {
    $end = strpos($link, '"',$offset);
  }
  if ($end) {
    $link = substr_replace($link, '', $offset, $end-$offset);
  }
  return $link;
}
add_filter('the_content_more_link', 'remove_more_jump_link');
/*-----------------------------------------------------------*/
 
 
 

以上。
(2017.11.07)

 

 

スポンサー リンク

 

             

 

 

 
モバイルバージョンを終了