WC_Customer::set_billing_country
Set billing_country.
Method of the class: WC_Customer{}
No Hooks.
Returns
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() WC Customer::set billing country code WC 10.5.0
public function set_billing_country( $value ) {
$this->set_address_prop( 'country', 'billing', $value );
}