WC_Customer::set_billing_country()publicWC 1.0

Set billing_country.

Method of the class: WC_Customer{}

No Hooks.

Return

null. Nothing (null).

Usage

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

WC_Customer::set_billing_country() code WC 8.7.0

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