Skip to content

Instantly share code, notes, and snippets.

@pauloiankoski
Created July 30, 2013 16:27
Show Gist options
  • Save pauloiankoski/6114517 to your computer and use it in GitHub Desktop.
Save pauloiankoski/6114517 to your computer and use it in GitHub Desktop.
Remover itens do menu do WordPress
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