WC_Order::set_shipping_country()
Set shipping country.
Method of the class: WC_Order{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Order = new WC_Order(); $WC_Order->set_shipping_country( $value );
- $value(string) (required)
- Shipping country.
WC_Order::set_shipping_country() WC Order::set shipping country code WC 9.8.2
public function set_shipping_country( $value ) { $this->set_address_prop( 'country', 'shipping', $value ); }