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