Hide ‘help’ Tab from admin panel


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function hide_help() {
  2. echo '<style type="text/css">
  3. #contextual-help-link-wrap { display: none !important; }
  4. </style>';
  5. }
  6. add_action('admin_head', 'hide_help');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.