Return to Snippet

Revision: 51331
at September 21, 2011 05:06 by RainyDayMedia


Initial Code
// 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');

Initial URL
http://wp-snippets.com/1420/hide-admin-help-tab/

Initial Description
Add to bottom of your theme's functions.php file

Initial Title
Hide Wordpress Dashboard 'Help'  Tab

Initial Tags
php, wordpress, help

Initial Language
PHP