WC_Customer::set_billing_location()
Sets all address info at once.
Метод класса: WC_Customer{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Customer = new WC_Customer(); $WC_Customer->set_billing_location( $country, $state, $postcode, $city );
- $country(строка) (обязательный)
- Country.
- $state(строка)
- State.
По умолчанию: '' - $postcode(строка)
- Postcode.
По умолчанию: '' - $city(строка)
- City.
По умолчанию: ''
Код WC_Customer::set_billing_location() WC Customer::set billing location WC 9.8.1
public function set_billing_location( $country, $state = '', $postcode = '', $city = '' ) { $address_data = $this->get_prop( 'billing', 'edit' ); $address_data['address_1'] = ''; $address_data['address_2'] = ''; $address_data['city'] = $city; $address_data['state'] = $state; $address_data['postcode'] = $postcode; $address_data['country'] = $country; $this->set_prop( 'billing', $address_data ); }