内容框位于<div>
ID为#postdivrich
因此,您可以使用CSS隐藏它。
可能最简单的方法是在现有页面中添加设置选项,以便可以将其关闭或打开。下面的帖子详细介绍了这一点:
http://wpengineer.com/2139/adding-settings-to-an-existing-page-using-the-settings-api/
设置到位后,需要检查设置并在正确的位置输出CSS。将此添加到
functions.php
:
if (get_option(\'paradise_hide_editor\') == \'yes\') {
function paradise_hide_editor() {
echo \'
<style type="text/css">
#postdivrich {display: none}
</style>\';
}
add_action(\'admin_head\', \'paradise_hide_editor\');
}