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