如何删除帮助选项卡和仪表板小部件区域的空边框

时间:2015-11-19 作者:RRGT19

我只需要知道在我的functions.php, 如何在帮助选项卡和小部件边框为空时删除它。

我在这里找到了答案,但答案很旧,事情已经改变了。如果有,我想要这个问题的最新解决方案。

屏幕截图:enter image description here

顺便说一下,我使用以下代码删除了屏幕选项:

function remove_screen_options(){
    return false;
}
add_filter(\'screen_options_show_screen\', \'remove_screen_options\');
要删除“帮助”选项卡和仪表板小部件边框,我需要做什么?

1 个回复
SO网友:Dave Romsey

下面的代码将删除“帮助”选项卡,并隐藏额外的两个仪表板小部件区域:

add_action( \'admin_head\', \'wpse209151_dashboard_cleanup\' );
function wpse209151_dashboard_cleanup() {
    $screen = get_current_screen();

    // Bail if we\'re not looking at the dashboard
    if ( \'dashboard\' !== $screen->base ) {
    return;
    }

    // Deal with the Help Tabs
    $screen->remove_help_tabs();

    // Hide the desired Dashboard widget areas 
    // 4 available widget areas: #postbox-container-1,2,3,4
    echo \'<style>
        #postbox-container-3,
        #postbox-container-4 {
            display: none;
        }
    </style>\' . "\\n\\n";
}