How to Hide the "Init Live Search" Admin Menu

function plt_hide_init_live_search_menus() {
	//Hide the "Settings → Init Live Search" menu.
	remove_submenu_page('options-general.php', 'init-live-search-settings');
}

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

Where do I put this code?