function plt_hide_bad_ip_wp_menus() {
//Hide the "Bad IP" menu.
remove_menu_page('bad-ip-wp');
//Hide the "Bad IP → Bad IP" menu.
remove_submenu_page('bad-ip-wp', 'bad-ip-wp');
//Hide the "Bad IP → Settings" menu.
remove_submenu_page('bad-ip-wp', 'bad-ip-settings');
}
add_action('admin_menu', 'plt_hide_bad_ip_wp_menus', 11);