WC_Legacy_Customer::set_city( string $city )

Legacy set city.


Description Description


Parameters Parameters

$city

(Required)


Top ↑

Source Source

File: includes/legacy/class-wc-legacy-customer.php

	function set_city( $city ) {
		wc_deprecated_function( 'WC_Customer::set_city', '3.0', 'WC_Customer::set_billing_city' );
		$this->set_billing_city( $city );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.