How to Hide the "mig33" Admin Menu

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

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

Where do I put this code?