WC_Customer::set_billing_first_name( string $value )

Set billing_first_name.


Description Description


Parameters Parameters

$value

(Required) Billing first name.


Top ↑

Source Source

File: includes/class-wc-customer.php

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


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.