这样小的任务不需要使用一个或两个插件。。。
要删除“帮助”选项卡,请使用
add_filter( \'contextual_help\', \'mytheme_remove_help_tabs\', 999, 3 );
function mytheme_remove_help_tabs($old_help, $screen_id, $screen){
$screen->remove_help_tabs();
return $old_help;
}
或
add_action(\'admin_head\', \'mytheme_remove_help_tabs\');
function mytheme_remove_help_tabs() {
$screen = get_current_screen();
$screen->remove_help_tabs();
}
第一个是安全的
和删除屏幕选项选项卡
add_filter(\'screen_options_show_screen\', \'__return_false\');
您可以在巡更中使用此功能。php文件或作为自定义插件的一部分。
<?php
/*
Plugin Name: Remove Tabs
Plugin URI: http://www.exe.ie
Description: Remove Help Tab and Screen Options Tab
Author: Daniel Conde
Author URI: http://www.exe.ie
*/
/* It will remove the tabs, not hide them with CSS */
add_filter( \'contextual_help\', \'mytheme_remove_help_tabs\', 999, 3 );
function mytheme_remove_help_tabs($old_help, $screen_id, $screen){
$screen->remove_help_tabs();
return $old_help;
}
add_filter(\'screen_options_show_screen\', \'__return_false\');
?>
复制并另存为removetabs。php,上传到您的插件文件夹并激活。
Edit:我意识到add_filter(\'screen_options_show_screen\', \'__return_false\');
您失去了以前在“屏幕选项卡”上配置的任何设置,例如在仪表板上,而不是两列小部件,您将只得到一列。为了避免出现这种情况,或者如果您遇到“屏幕选项卡”上的设置丢失的问题,您可以使用以下选项:
替换:add_filter(\'screen_options_show_screen\', \'__return_false\');
使用:
function remove_screen_options($display_boolean, $wp_screen_object){
$blacklist = array(\'post.php\', \'post-new.php\', \'index.php\', \'edit.php\');
if (in_array($GLOBALS[\'pagenow\'], $blacklist)) {
$wp_screen_object->render_screen_layout();
$wp_screen_object->render_per_page_options();
return false;
} else {
return true;
}
}
add_filter(\'screen_options_show_screen\', \'remove_screen_options\', 10, 2);
保存在“屏幕选项卡”上的设置/选项不会丢失,并且$黑名单数组上的页面的选项卡将消失,您可以向列表中添加更多页面或删除if(in\\u array station