How to Hide the "Child Theme Copy Settings" Admin Menu

function plt_hide_child_theme_copy_settings_menus() {
	//Hide the "Appearance → Child Theme Copy Settings" menu.
	remove_submenu_page('themes.php', 'child-theme-copy-settings');
}

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

Where do I put this code?