Created
July 30, 2013 16:27
-
-
Save pauloiankoski/6114517 to your computer and use it in GitHub Desktop.
Remover itens do menu do WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'admin_menu' , 'custom_remove_menu_pages' ); | |
function custom_remove_menu_pages() { | |
remove_menu_page( 'upload.php' ); | |
remove_menu_page( 'edit-comments.php' ); | |
remove_menu_page( 'themes.php' ); | |
remove_menu_page( 'tools.php' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment