屏幕选项WordPress所见即所得

时间:2012-08-14 作者:Paradise

是否有任何方法可以在此选项中设置所见即所得框的复选框,以便管理员能够在页面中不需要内容的情况下将其隐藏

1 个回复
SO网友:joshcanhelp

内容框位于<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\');
}

结束