WC_Legacy_Customer::get_addresspublicWC 1.0

Legacy get address.

Method of the class: WC_Legacy_Customer{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WC_Legacy_Customer = new WC_Legacy_Customer();
$WC_Legacy_Customer->get_address();

WC_Legacy_Customer::get_address() code WC 10.3.6

function get_address() {
	wc_deprecated_function( 'WC_Customer::get_address', '3.0', 'WC_Customer::get_billing_address_1' );
	return $this->get_billing_address_1();
}