WC_Customer::set_billing_phonepublicWC 1.0

Set billing_phone.

Method of the class: WC_Customer{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->set_billing_phone( $value );
$value(string) (required)
Billing phone.

WC_Customer::set_billing_phone() code WC 10.3.3

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