How do I use new add_editor_style() function in wo

2019-09-11 04:57发布

I found this article:

http://www.deluxeblogtips.com/2010/05/editor-style-wordpress-30.html

I created a child theme using the Twentyten theme as a parent. I am trying to have the WYSIWYG editor use a custom stylesheet.

I added this to my functions.php file:

add_editor_style();

Then I created an editor-style.css file in my child theme's folder and added this:

html .mceContentBody {
    max-width:591px;
}

When I go to the WYSIWYG editor and use firebug to check the css that is affecting the .mceContentBody element, I can see that is using my stylesheet, but it is being overrriden by the default editor-style.css sheet from the twentyten theme.

How can I force it to use my editor-style.css file and not the default one?

3条回答
何必那么认真
2楼-- · 2019-09-11 05:41

Check your CSS for errors. I spent hours pulling my hair out wondering why wordpress wasn't using my stylesheet. It wasn't even getting included. Turns out i had an extra { in my css.

查看更多
兄弟一词,经得起流年.
3楼-- · 2019-09-11 05:42

add_theme_support('editor_style');

before

add_editor_style('tinymce-styles.css');

assuming that your custom css is in your template's root folder.

查看更多
beautiful°
4楼-- · 2019-09-11 05:50

Try redeclaring twentyten_setup in your theme's functions.php file. Just copy and paste the whole function from twentyten to your theme.

查看更多
登录 后发表回答