wordpress tinymce 可视化编辑 window 不像文本编辑那样被拉伸

wordpress tinymce visual editing window not stretched as text editing

wp 4.1 tinymce advance 4.1.7

我把段落放在文本模式下的编辑区,没有任何html代码。

然后尝试查看它在可视模式下的外观,但可视模式不会像文本编辑模式那样拉伸。

即使不是,bbpress 上已编辑的前端页面、帖子和主题也按预期显示。

如何使视觉模式像文本模式一样完全拉伸?

我会感谢让我知道的人。

在抄本中找到解决方案。在我的记忆中,只需将编辑器 css 文件放入子主题目录即可。

现在,Wordpress 4.1 要求我们再做一项挂钩操作的任务。

将以下代码放入当前主题目录functions.php

function my_theme_add_editor_styles() {
 add_editor_style( 'custom-editor-style.css' );
}

add_action( 'admin_init', 'my_theme_add_editor_styles' );

then, put the file, custom-editor-style.css, into same dir with scripted as below:

html .mceContentBody
{max-width:99%;}