WC_Order::set_billing_city() public WC 1.0
Set billing city.
{} It's a method of the class: WC_Order{}
No Hooks.
Return
Null. Nothing.
Usage
$WC_Order = new WC_Order(); $WC_Order->set_billing_city( $value );
- $value(string) (required)
- Billing city.
Code of WC_Order::set_billing_city() WC Order::set billing city WC 5.0.0
public function set_billing_city( $value ) {
$this->set_address_prop( 'city', 'billing', $value );
}