getfluid
3/9/2018 - 7:25 PM

Hide native Categories and Tags from the side menu in the WordPress admin area

Hide native Categories and Tags from the side menu in the WordPress admin area

// Remove catgories and tags from side menu
function my_remove_sub_menus() {
    remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=category');
    remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=post_tag');
}
add_action('admin_menu', 'my_remove_sub_menus');