WC_Legacy_Customer::get_country() public WC 1.0
Legacy get country.
{} It's a method of the class: WC_Legacy_Customer{}
No Hooks.
Return
Null. Nothing.
Usage
$WC_Legacy_Customer = new WC_Legacy_Customer(); $WC_Legacy_Customer->get_country();
Code of WC_Legacy_Customer::get_country() WC Legacy Customer::get country WC 5.0.0
function get_country() {
wc_deprecated_function( 'WC_Customer::get_country', '3.0', 'WC_Customer::get_billing_country' );
return $this->get_billing_country();
}