How to Hide Gobi Stories Admin Menus

function plt_hide_gobi_integration_menus() {
	//Hide the "Settings → Gobi" menu.
	remove_submenu_page('options-general.php', 'gobi');
}

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

Where do I put this code?