How to Hide the "Export/Import Menus" Admin Menu

function plt_hide_export_import_menus_menus() {
	//Hide the "Appearance → Export/Import Menus" menu.
	remove_submenu_page('themes.php', 'dsp_export_import_menus');
}

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

Where do I put this code?