WC_Customer::set_billing_address()
Set billing_address_1.
{} It's a method of the class: WC_Customer{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Customer = new WC_Customer(); $WC_Customer->set_billing_address( $value );
- $value(string) (required)
- Billing address line 1.
Code of WC_Customer::set_billing_address() WC Customer::set billing address WC 6.7.0
public function set_billing_address( $value ) { $this->set_billing_address_1( $value ); }