How to Hide the "SHT24 Termine Buchung" Admin Menu

function plt_hide_sht24_termine_menus() {
	//Hide the "Settings → SHT24 Termine  Buchung" menu.
	remove_submenu_page('options-general.php', 'sht24-termine');
}

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

Where do I put this code?