How to Hide the "Demo Import Kit" Admin Menu

function plt_hide_demo_import_kit_menus() {
	//Hide the "Appearance → Demo Import Kit" menu.
	remove_submenu_page('themes.php', 'demo-import-kit');
}

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

Where do I put this code?