Hide Wordpress Dashboard 'Help' Tab


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

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


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

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.