Skip to content

Instantly share code, notes, and snippets.

@fernandofuly
Created May 16, 2014 18:00
Show Gist options
  • Save fernandofuly/f98f66de527e1c32097a to your computer and use it in GitHub Desktop.
Save fernandofuly/f98f66de527e1c32097a to your computer and use it in GitHub Desktop.
Remove submenu Wordpress
add_action('admin_menu', 'my_remove_sub_menus');
function remove_sub_menus() {
remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=category');
remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=post_tag');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment