Hide the Help tab
Removes the Help tab at the top right of admin screens, for a tidier admin area.
<?php
add_action(
'admin_head',
static function () {
$screen = get_current_screen();
if ( $screen ) {
$screen->remove_help_tabs();
}
}
);
In these packs
- More admin tweaks: Useful columns, a tidier admin bar, a welcome box for clients, and fewer menus for editors.