WC_Customer::get_billing_country()publicWC 1.0

Get billing_country.

Method of the class: WC_Customer{}

No Hooks.

Return

String.

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->get_billing_country( $context );
$context(string)
What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'

WC_Customer::get_billing_country() code WC 8.6.1

public function get_billing_country( $context = 'view' ) {
	return $this->get_address_prop( 'country', 'billing', $context );
}