4.1以降はheaderにtitleタグを入れる必要がなくなった。
例えばこんな感じのやつ
1 |
<title><?php wp_title(); ?></title> |
具体的にはfunctions.phpに下記を追加
これでタイトルは「記事名-タイトル」になる。
1 2 3 4 |
function setup_theme() { add_theme_support( 'title-tag' ); } add_action( 'after_setup_theme', 'setup_theme' ); |
セパレータを「|」に変更する方法
※任意なので「|」を変更すれば何でもいける
1 2 3 4 5 |
function custom_title_separator($sep) { $sep = '|'; return $sep; } add_filter( 'document_title_separator', 'custom_title_separator' ); |
トップページからキャッチフレーズを消す方法。
通常トップページは「サイト名 | キャッチフレーズ」になる。
1 2 3 4 5 6 7 |
function remove_tagline($title) { if ( isset($title['tagline']) ) { unset( $title['tagline'] ); } return $title; } add_filter( 'document_title_parts', 'remove_tagline' ); |