WC_Customer::set_billing_state
Set billing_state.
Метод класса: WC_Customer{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Customer = new WC_Customer(); $WC_Customer->set_billing_state( $value );
- $value(строка) (обязательный)
- Billing state.
Код WC_Customer::set_billing_state() WC Customer::set billing state WC 10.4.3
public function set_billing_state( $value ) {
$this->set_address_prop( 'state', 'billing', $value );
}