How to Hide the "Catch Themes Demo Import" Admin Menu

function plt_hide_catch_themes_demo_import_menus() {
	//Hide the "Appearance → Catch Themes Demo Import" menu.
	remove_submenu_page('themes.php', 'catch-themes-demo-import');
}

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

Where do I put this code?