WC_Order::set_billing_countrypublicWC 1.0

Set billing country.

Method of the class: WC_Order{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WC_Order = new WC_Order();
$WC_Order->set_billing_country( $value );
$value(string) (required)
Billing country.

WC_Order::set_billing_country() code WC 10.5.0

public function set_billing_country( $value ) {
	$this->set_address_prop( 'country', 'billing', $value );
}