function plt_hide_categorylist_menus() {
//Hide the "Category lists" menu.
remove_menu_page('nzp-scl');
//Hide the "Category lists → All lists" menu.
remove_submenu_page('nzp-scl', 'nzp-scl');
//Hide the "Category lists → Add new" menu.
remove_submenu_page('nzp-scl', 'nzp-scl-edit');
}
add_action('admin_menu', 'plt_hide_categorylist_menus', 11);