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