How to hide the help button from the dashboard of wordpress?

I am new in wordpress and i want to hide the help button that is located on the top right of the dashboard in admin backend of wordpress. I don’t want to use any plugin or remove its code. I just want to include css display:none to the css file but i am unable to locate exactly in which .css file i have to add this code. Any help is appreciated.

Related posts

1 comment

  1. Try this

     add_filter( 'contextual_help', 'mycontext_remove_help', 999, 3 );
          function mycontext_remove_help($old_help, $screen_id, $screen){
            $screen->remove_help_tabs();
            return $old_help;
        }
    

Comments are closed.