How to edit blockquote image

时间:2014-08-24 作者:Felipe Viero Goulart

我正在使用TinyMCE Advanced来显示更多编辑文本的选项。当我使用blockquote, 将显示图像,如下所示:

enter image description here

我怎样才能改变这个?

1 个回复
最合适的回答,由SO网友:Nicolai Grossherr 整理而成

您可以使用add_editor_style() 使用自定义样式替代默认样式。像这样:

function wpse158918_override_default_tinymce_styles() {  
    add_editor_style( \'your-editor-styles.css\' );
add_action( \'after_setup_theme\', \'wpse158918_override_default_tinymce_styles\' );
代码将进入您的functions.php, 样式表的路径相对于当前主题的目录。如果你不是从你的主题,而是一个插件,那么使用mce_css 滤器codex页面示例:

function plugin_mce_css( $mce_css ) {
    if ( ! empty( $mce_css ) )
        $mce_css .= \',\';

    $mce_css .= plugins_url( \'editor.css\', __FILE__ );

    return $mce_css;
}
add_filter( \'mce_css\', \'plugin_mce_css\' );

结束

相关推荐

在名称中使用方括号时,“wp_EDITOR”不能正确显示TinyMCE

我正在创建一个自定义选项页面,我有一个文本区域,我已经使用wp\\U编辑器将其转换为TinyMCE编辑器。TinyMCE显示正确,但当我在$id中包含方括号时,它会中断。下面是我用于add\\u settings\\u field函数回调的代码:function px_wp_editor($args){ $options = get_option(\'theme_options\'); $value = $options[\'px_wp_