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