WC_Customer::set_shipping_first_name()publicWC 1.0

Set shipping_first_name.

Метод класса: WC_Customer{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WC_Customer = new WC_Customer();
$WC_Customer->set_shipping_first_name( $value );
$value(строка) (обязательный)
Shipping first name.

Код WC_Customer::set_shipping_first_name() WC 8.7.0

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