WC_Order::get_billing_address_2() public WC 1.0
Get billing address line 2.
{} It's a method of the class: WC_Order{}
No Hooks.
Return
String.
Usage
$WC_Order = new WC_Order(); $WC_Order->get_billing_address_2( $context );
- $context(string)
- What the value is for. Valid values are view and edit.
Code of WC_Order::get_billing_address_2() WC Order::get billing address 2 WC 5.0.0
public function get_billing_address_2( $context = 'view' ) {
return $this->get_address_prop( 'address_2', 'billing', $context );
}