function plt_hide_jetpack_search_menus() {
//Hide the "Jetpack" menu.
remove_menu_page('jetpack');
//Hide the "Jetpack → Search" menu.
remove_submenu_page('jetpack', 'jetpack-search');
}
add_action('admin_menu', 'plt_hide_jetpack_search_menus', 1001);