How to Hide the "JivoSite" Admin Menu

function plt_hide_jivosite_menus() {
	//Hide the "Settings → JivoSite" menu.
	remove_submenu_page('options-general.php', 'jivosite_code');
}

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

Where do I put this code?