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