WC_Customer::set_billing_first_name()publicWC 1.0

Set billing_first_name.

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

Хуков нет.

Возвращает

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

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

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

Код WC_Customer::set_billing_first_name() WC 8.7.0

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