How do I hide the categories tab that you see when you click on the posts in the wordpress dashboard?
CodePudding user response:
You could remove categories submenu by using remove_submenu_page function and admin_menu action hook. Like this:
add_action('admin_menu', 'removing_category_submenu');
function removing_category_submenu()
{
remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=category');
}


