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