Skip to content

Instantly share code, notes, and snippets.

@gugaalves
Last active August 29, 2015 14:06
Show Gist options
  • Save gugaalves/5aceef8f08705aa0b073 to your computer and use it in GitHub Desktop.
Save gugaalves/5aceef8f08705aa0b073 to your computer and use it in GitHub Desktop.
Remover ajuda do admin do WP
<?php
// Adicione esta função no functions.php
add_filter( 'contextual_help', 'mytheme_remove_help_tabs', 999, 3 );
function mytheme_remove_help_tabs($old_help, $screen_id, $screen){
$screen->remove_help_tabs();
return $old_help;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment