回答編集履歴

1

 

2017/09/18 09:23

投稿

退会済みユーザー
test CHANGED
@@ -16,10 +16,28 @@
16
16
 
17
17
 
18
18
 
19
+ **追記**
20
+
21
+ 例えば```add_editor_style('editor-style.css');```の部分を
19
22
 
20
23
 
21
- この質問はどうなりましたか?
22
24
 
23
- [https://teratail.com/questions/92293](https://teratail.com/questions/92293)
25
+ 以下に変えるとどうなりますか?
24
26
 
27
+ ```
28
+
25
- 返答がありませんが、解決したなら解決済にしてください。
29
+ function add_editor_style_css() {
30
+
31
+ wp_enqueue_style( 'editor-style', get_template_directory_uri() . '/editor-style.css' );
32
+
33
+ }
34
+
35
+ add_action( 'admin_print_scripts', 'add_editor_style_css' );
36
+
37
+ ```
38
+
39
+
40
+
41
+
42
+
43
+