The following snippet will let you hide “help” tab from WordPress dashboard.
1 2 3 4 5 6 | function hide_help() { echo '<style type="text/css"> #contextual-help-link-wrap { display: none !important; } </style>'; } add_action('admin_head', 'hide_help'); |
Snippet Source/Credit: WP-Snippets.com