Add the snippet below to your themes functions.php file remove the help tabs in WordPress Admin.
function remove_help_tabs() {
$screen = get_current_screen(); $screen->remove_help_tabs();
}
add_action('admin_head', 'remove_help_tabs');
Sunday, October 2nd, 2016
Add the snippet below to your themes functions.php file remove the help tabs in WordPress Admin.
function remove_help_tabs() {
$screen = get_current_screen(); $screen->remove_help_tabs();
}
add_action('admin_head', 'remove_help_tabs');
Leave a Reply