WC_Customer::set_billing_first_name()
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 Customer::set billing first name WC 9.4.2
public function set_billing_first_name( $value ) { $this->set_address_prop( 'first_name', 'billing', $value ); }