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