How to Hide the "WPEngine Migration" Admin Menu

function plt_hide_wp_site_migrate_menus() {
	//Hide the "WPEngine Migration" menu.
	remove_menu_page('wpengine');
}

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

Where do I put this code?