Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@deeman
Created September 23, 2019 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deeman/e5e20763ea72751b12d3eb05306a32f5 to your computer and use it in GitHub Desktop.
Save deeman/e5e20763ea72751b12d3eb05306a32f5 to your computer and use it in GitHub Desktop.
WordPress - Remove Help-tab In Admin Area
// Remove 'help'-tab i Admin area
add_filter('contextual_help_list','contextual_help_list_remove');
function contextual_help_list_remove(){
global $current_screen;
$current_screen->remove_help_tabs();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment