WC_Customer::set_billing_phone()
Set billing_phone.
{} Это метод класса: WC_Customer{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$WC_Customer = new WC_Customer(); $WC_Customer->set_billing_phone( $value );
- $value(строка) (обязательный)
- Billing phone.
Код WC_Customer::set_billing_phone() WC Customer::set billing phone WC 6.8.0
public function set_billing_phone( $value ) { $this->set_address_prop( 'phone', 'billing', $value ); }