WC_Customer::get_billing_address_2()
Get billing_address_2.
Method of the class: WC_Customer{}
No Hooks.
Return
String
. $value
Usage
$WC_Customer = new WC_Customer(); $WC_Customer->get_billing_address_2( $context );
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'
WC_Customer::get_billing_address_2() WC Customer::get billing address 2 code WC 9.4.2
public function get_billing_address_2( $context = 'view' ) { return $this->get_address_prop( 'address_2', 'billing', $context ); }