WC_Customer::set_billing_address_1()publicWC 1.0

Set billing_address_1.

Method of the class: WC_Customer{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->set_billing_address_1( $value );
$value(string) (required)
Billing address line 1.

WC_Customer::set_billing_address_1() code WC 8.6.1

public function set_billing_address_1( $value ) {
	$this->set_address_prop( 'address_1', 'billing', $value );
}