How to Hide the "Customify Sites" Admin Menu

function plt_hide_customify_sites_menus() {
	//Hide the "Appearance → Customify Sites" menu.
	remove_submenu_page('themes.php', 'customify-sites');
}

add_action('admin_menu', 'plt_hide_customify_sites_menus', 51);

Where do I put this code?