add_editor_style not working

时间:2015-01-10 作者:Relax

我创建了一个样式表

编辑器样式。css

我想使用add\\u editor\\u style()函数加载此css文件,

在我的功能中。php

function my_theme_add_editor_styles() {
    add_editor_style( \'css/editor-style.css\' );
}
add_action( \'after_setup_theme\', \'my_theme_add_editor_styles\' );
我也尝试过这个解决方案

add_editor_style is not loading in frontend. Any solution?

3 个回复
最合适的回答,由SO网友:jetlej 整理而成

您不需要任何操作来添加编辑器样式。简单地在函数中的任意位置添加以下内容。php:

add_editor_style(\'css/editor-style.css\');

SO网友:Willster

您需要做两件事(请参阅其他add\\u theme\\u支持):

add_theme_support( \'editor-styles\' );
add_action(\'admin_init\', \'el_add_editor_styles\');

function el_add_editor_styles() {
    add_editor_style( \'style-editor.css\' );
}

SO网友:Jake

为样式表使用绝对路径:

add_editor_style( get_template_directory_uri() . \'/css/editor-style.css\' );

结束

相关推荐