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


i new in wordpress , want hide button located on top right of dashboard in admin backend of wordpress. don't want use plugin or remove code. want include css display:none css file unable locate in .css file have add code. appreciated.

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

Popular posts from this blog

symfony - TEST environment only: The database schema is not in sync with the current mapping file -

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -