Every WordPress admin page has a “Help” tab in the top-right corner. Click it, and a panel slides down with context-specific help documentation.
In theory, it’s useful. In practice, no user in the history of WordPress has ever clicked that tab when they actually needed help. They Google their problem instead.
For agencies building client sites, the Help tab adds visual clutter and occasionally confuses users who accidentally open it and can’t figure out how to close it.
What is the Help tab?
WordPress registers contextual help content for every admin screen. The Help tab contains documentation specific to the page you’re on — explanations of settings, links to WordPress documentation, and overview text.
Plugins can also add their own content to the Help tab, though few do.
The quick fix
// Remove the Help tab from all admin screens
add_action( 'admin_head', function() {
$screen = get_current_screen();
if ( $screen ) {
$screen->remove_help_tabs();
}
});
The Help tab disappears from every admin page.
The one-click solution
OvKit includes Hide Help Tab under Features → Admin. One toggle.
What happens after you fix this?
- Help tab removed from all admin screens
- Cleaner admin header — less visual noise
- No functionality lost — the help content was rarely used anyway
FAQ
### What if a user actually needs help?
WordPress.org documentation, your agency’s support, and Google are all more useful than the built-in Help tab content. The tab’s removal doesn’t affect any admin functionality.
### Does this remove the Screen Options tab too?
No. Help and Screen Options are separate tabs. OvKit has a separate toggle for Screen Options if you want to remove that too.
Related reads: