WC_Order::get_billing_address_1()
Get billing address line 1.
Method of the class: WC_Order{}
No Hooks.
Return
String
.
Usage
$WC_Order = new WC_Order(); $WC_Order->get_billing_address_1( $context );
- $context(string)
- What the value is for. Valid values are view and edit.
Default: 'view'
WC_Order::get_billing_address_1() WC Order::get billing address 1 code WC 9.6.1
public function get_billing_address_1( $context = 'view' ) { return $this->get_address_prop( 'address_1', 'billing', $context ); }