WordPress help remove the top right corner of the admin interface

The upper right corner wordpress admin interface, correspond with each administration has a "help" option, already familiar with the use of wordpress users, and there is no effect, in order to clean the interface, you can remove it out of the code. Put the following code into the theme functions.php file:

  1. add_action('in_admin_header', function(){
  2. 	global $current_screen;
  3. 	$current_screen->remove_help_tabs();
  4. });
Also come up here now? Contact us

Save the file can be. Interested users can look get_current_screen () function.

Guess you like

Origin www.cnblogs.com/idid/p/11880006.html