How to Hide the "Import Theme Demo" Admin Menu

function plt_hide_hoot_import_menus() {
	//Hide the "Appearance → Import Theme Demo" menu.
	remove_submenu_page('themes.php', 'hoot-import');
}

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

Where do I put this code?