WordPress 中更新的全屏模式按钮更少。有没有办法在 TinyMCE 编辑器中启用旧的(以前的)全屏模式?
问问题
174 次
1 回答
0
添加Ticket #20237中描述的“微插件”代码。
add_filter('mce_buttons', 'oldfullscreen_mce_buttons');
function oldfullscreen_mce_buttons($buttons) {
$buttons[] = 'fullscreen';
return $buttons;
}
参考:
WordPress › 支持 » 使用格式化按钮进行全屏编辑
http://wordpress.org/support/topic/full-screen-editing-with-formatting-buttons
WordPress › 支持 » [插件:TinyMCE Advanced] 全屏显示?
http://wordpress.org/support/topic/plugin-tinymce-advanced-appear-in-full-screen-mode?replies=2
于 2013-08-18T08:19:17.433 回答