Issue
How do I hide the categories tab that you see when you click on the posts in the wordpress dashboard?
Solution
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');
}
Answered By - Ruvee
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.