WC_Order::get_billing_country( string $context = 'view' )
Get billing country.
Description Description
Parameters Parameters
- $context
-
(Optional) What the value is for. Valid values are view and edit.
Default value: 'view'
Return Return
(string)
Source Source
File: includes/class-wc-order.php
631 632 633 | public function get_billing_country( $context = 'view' ) { return $this ->get_address_prop( 'country' , 'billing' , $context ); } |