/ Published in: PHP
Add to bottom of your theme's functions.php file
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// 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');
URL: http://wp-snippets.com/1420/hide-admin-help-tab/