WC_Customer::set_shipping_first_name()publicWC 1.0

Set shipping_first_name.

Method of the class: WC_Customer{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->set_shipping_first_name( $value );
$value(string) (required)
Shipping first name.

WC_Customer::set_shipping_first_name() code WC 8.7.0

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