WC_Legacy_Customer::set_address_2() public WC 1.0
Legacy set address.
{} It's a method of the class: WC_Legacy_Customer{}
No Hooks.
Return
Null. Nothing.
Usage
$WC_Legacy_Customer = new WC_Legacy_Customer(); $WC_Legacy_Customer->set_address_2( $address );
- $address(string) (required)
- -
Code of WC_Legacy_Customer::set_address_2() WC Legacy Customer::set address 2 WC 5.0.0
function set_address_2( $address ) {
wc_deprecated_function( 'WC_Customer::set_address_2', '3.0', 'WC_Customer::set_billing_address_2' );
$this->set_billing_address_2( $address );
}