WC_Legacy_Customer::set_city()
Legacy set city.
Method of the class: WC_Legacy_Customer{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Legacy_Customer = new WC_Legacy_Customer(); $WC_Legacy_Customer->set_city( $city );
- $city(string) (required)
- -
WC_Legacy_Customer::set_city() WC Legacy Customer::set city code WC 9.3.3
function set_city( $city ) { wc_deprecated_function( 'WC_Customer::set_city', '3.0', 'WC_Customer::set_billing_city' ); $this->set_billing_city( $city ); }