# タイトルセパレーターの変更方法 ◆変更内容 ・ブラウザのタブに表示されるタブ内ハイフン(タイトルセパレーター)を変更 ・$sepというパラメーターで、フィルターフックを使って変更する ・これはSnowMonkey関係なく、WordPressの汎用的な変更 <br> ◆サンプル  ◆変更ファイル(子テーマ使用) ・functions.php <br> functions.php ``` //ブラウザタブ内のタイトルセパレーター変更 //(ハイフンからパイプラインへ変更) add_theme_support('title-tag'); function title_separator_change( $sep ){ $sep = ' ❘'; return $sep; } add_filter('document_title_separator', 'title_separator_change'); ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up