Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

How to Hide Google Cloud Storage plugin Admin Menus

function plt_hide_gcs_menus() {
	//Hide the "Settings → GCS" menu.
	remove_submenu_page('options-general.php', 'gcs');
}

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

Where do I put this code?