WC_Order::set_billing_phone()
Set billing phone.
Method of the class: WC_Order{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Order = new WC_Order(); $WC_Order->set_billing_phone( $value );
- $value(string) (required)
- Billing phone.
WC_Order::set_billing_phone() WC Order::set billing phone code WC 9.6.1
public function set_billing_phone( $value ) { $this->set_address_prop( 'phone', 'billing', $value ); }