Advertisement
thesufi

Remove help tab from wp dashboard only for editor user role

Aug 18th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. function dct_remove_help() {
  2.     if ( current_user_can( 'editor' ) ) {
  3.         $screen = get_current_screen();
  4.         $screen->remove_help_tabs();
  5.     }
  6. }
  7. add_action('admin_head', 'dct_remove_help');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement