How to Hide the "Utopia Coming Soon" Admin Menu

function plt_hide_utopia_under_construction_menus() {
	//Hide the "Settings → Utopia Coming Soon" menu.
	remove_submenu_page('options-general.php', 'Utopia_coming_soon');
}

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

Where do I put this code?