WC_Customer::get_billing_address_2()publicWC 1.0

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() code WC 8.7.0

public function get_billing_address_2( $context = 'view' ) {
	return $this->get_address_prop( 'address_2', 'billing', $context );
}