Simple way to Disable WordPress Help Link from Admin Menu

Last updated
App Shah

Crunchify » WordPress Optimization and Tutorials » Simple way to Disable WordPress Help Link from Admin Menu

Disable Help Menu in WordPress Crunchify Tips

WordPress is pretty amazing. It provides so many customization options without breaking your site. When you login to WordPress Admin Panel you by default see Screen Options and Help links.

In my last 8 years of WordPress development experience I hardly click on Help Link. So, why not to disable if you think it’s not required under Admin Header.

WordPress Help link Admin Panel Crunchify

If you want to disable the same then just put below code to your theme’s functions.php file.

add_action('admin_head', 'crunchify_disable_help_adminLink');
function crunchify_disable_help_adminLink() {
    if(is_admin()){
    echo '<style type="text/css">
            #contextual-help-link-wrap { display: none !important; }
          </style>';
    }
}

Help Link option gone Crunchify

Leave a Comment