How to Hide the "Instant Index" Admin Menu

function plt_hide_instant_indexing_check_menus() {
	//Hide the "Instant Index" menu.
	remove_menu_page('instant-indexing-check');
}

add_action('admin_menu', 'plt_hide_instant_indexing_check_menus', 11);

Where do I put this code?