我找到了这篇文章:
http://www.deluxeblogtips.com/2010/05/editor-style-wordpress-30.html
我使用 Twentyten 主题作为父主题创建了一个子主题。我试图让 WYSIWYG 编辑器使用自定义样式表。
我将此添加到我的 functions.php 文件中:
add_editor_style();
然后我在我的子主题文件夹中创建了一个editor-style.css文件并添加了这个:
html .mceContentBody {
max-width:591px;
}
当我转到 WYSIWYG 编辑器并使用 firebug 检查影响.mceContentBody元素的 css 时,我可以看到它正在使用我的样式表,但它被来自 20 主题的默认 editor-style.css 表覆盖。
如何强制它使用我的 editor-style.css 文件而不是默认文件?