/ Published in: PHP
URL: http://wp-snippets.com/1420/hide-admin-help-tab/
Add to bottom of your theme's functions.php file
Expand |
Embed | Plain Text
// Hide admin help tab function hide_help() { echo '<style type="text/css"> #contextual-help-link-wrap { display: none !important; } </style>'; } add_action('admin_head', 'hide_help');
You need to login to post a comment.
