How to Hide the "DreamHost" Admin Menu

function plt_hide_dreamhost_automated_migration_menus() {
	//Hide the "DreamHost" menu.
	remove_menu_page('dreamhost');
}

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

Where do I put this code?