我正在尝试使用add_editor_style()
添加自定义编辑器样式。
在template.php
我添加了:
<?php
add_editor_style();
我的主题目录中有一个名为editor-style.css的样式表,其中包含以下css:
/* editor-style.css */
div { background-color: orange;}
p {color: red!important; font-size: 18px!important; }
答案 0 :(得分:1)
我相信add_editor_style()
必须在functions.php
才能正常工作。