WP 5如何为tinyMCE和Gutenberg添加_EDITOR_STYLE

时间:2018-12-10 作者:dameer dj

在古腾堡块之前,我们使用

add_editor_style( array( \'path/to/editor-style.css\', \'whatever.css\' ) );
现在我们有了Gutenberg编辑器,它的样式表也是通过使用相同的函数加载的。

如果我们想为它们保留样式表呢?我这样问是因为有一些插件允许用户禁用古腾堡。很明显,这样做是不可能的:

 add_editor_style( array( \'editor-style-mce.css\', \'editor-style-gutenberg.css\' ) );
为了使开发人员的工作更加复杂,可以选择将classic editor用作Gutenberg块。看来我们必须在after_setup_theme 分别操作和加载适当的编辑器样式表,但当将classic editor用作Gutenberg块时,我们不能做太多。

是否有人能够提供任何类型的解决方案?

1 个回复
SO网友:Flamegrass

你需要打电话add_theme_support( \'editor-styles\' )after_setup_theme

More information

相关推荐

Add editor toolbar to Metabox

我有多个这样的元数据库:function initialisation_metaboxes_home(){ add_meta_box(\'home_extract_meta\', \'Affichage home\', \'ma_meta_function_home\', \'produit_fr\', \'normal\', \'high\'); add_meta_box(\'home_extract_meta\', \'Affichage home\', \'