How to Hide the "Chameleon" Admin Menu

function plt_hide_chameleon_menus() {
	//Hide the "Settings → Chameleon" menu.
	remove_submenu_page('options-general.php', 'wpc');
}

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

Where do I put this code?