回答編集履歴
1
追記
answer
CHANGED
@@ -11,4 +11,14 @@
|
|
11
11
|
|
12
12
|
```php
|
13
13
|
add_filter('document_title_separator',function(){return '';},100);
|
14
|
-
```
|
14
|
+
```
|
15
|
+
|
16
|
+
---
|
17
|
+
追記
|
18
|
+
|
19
|
+
add_theme_support('title-tag');してるのに
|
20
|
+
document_title_separatorが働かないのであれば
|
21
|
+
pre_get_document_titleでテーマ独自にタイトルを作ってるのかもしれないです
|
22
|
+
|
23
|
+
この場合はタイトルの構造はテーマによるところなので
|
24
|
+
テーマの中でpre_get_document_titleのフィルタを探してどうにかする感じでしょうか
|