How to Hide the "Tawk.to" Admin Menu

function plt_hide_tawkto_live_chat_menus() {
	//Hide the "Settings → Tawk.to" menu.
	remove_submenu_page('options-general.php', 'tawkto_plugin');
}

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

Where do I put this code?