WC_Legacy_Customer::set_location()
Sets session data for the location.
Метод класса: WC_Legacy_Customer{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Legacy_Customer = new WC_Legacy_Customer(); $WC_Legacy_Customer->set_location( $country, $state, $postcode, $city );
- $country(строка) (обязательный)
- -
- $state(строка) (обязательный)
- -
- $postcode(строка)
- -
По умолчанию: '' - $city(строка)
- -
По умолчанию: ''
Код WC_Legacy_Customer::set_location() WC Legacy Customer::set location WC 9.2.3
public function set_location( $country, $state, $postcode = '', $city = '' ) { $this->set_billing_location( $country, $state, $postcode, $city ); $this->set_shipping_location( $country, $state, $postcode, $city ); }