WC_Customer::set_billing_address_2()
Set billing_address_2.
Method of the class: WC_Customer{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Customer = new WC_Customer(); $WC_Customer->set_billing_address_2( $value );
- $value(string) (required)
- Billing address line 2.
WC_Customer::set_billing_address_2() WC Customer::set billing address 2 code WC 9.4.2
public function set_billing_address_2( $value ) { $this->set_address_prop( 'address_2', 'billing', $value ); }