您可能需要使用条件编辑器样式表现在需要的方法(对于TinyMCE)。
function my_theme_add_editor_styles() {
global $post;
$post_type = get_post_type( $post->ID );
$editor_style = \'editor-style-\' . $post_type . \'.css\';
add_editor_style( $editor_style );
}
add_action( \'pre_get_posts\', \'my_theme_add_editor_styles\' );
此代码段来自
a Hongkiat article describing the process.
注意:对于每种帖子类型,主题目录中都会有不同的编辑器样式表:
editor-style-POST_TYPE.css
使用sass/less会使这一点更易于管理,因为您可以从部分编译这些样式表,只需添加更改Gutenberg编辑器宽度的类。
不太理想,但这种方法可以完成工作。