WC_Customer::get_billing_city( string $context = 'view' )
Get billing_city.
Description Description
Parameters Parameters
- $context
-
(Optional) What the value is for. Valid values are 'view' and 'edit'.
Default value: 'view'
Return Return
(string) $value
Source Source
File: includes/class-wc-customer.php
554 555 556 | public function get_billing_city( $context = 'view' ) { return $this ->get_address_prop( 'city' , 'billing' , $context ); } |