WC_Customer::set_billing_company()
Set billing_company.
Метод класса: WC_Customer{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Customer = new WC_Customer(); $WC_Customer->set_billing_company( $value );
- $value(строка) (обязательный)
- Billing company.
Код WC_Customer::set_billing_company() WC Customer::set billing company WC 9.5.1
public function set_billing_company( $value ) { $this->set_address_prop( 'company', 'billing', $value ); }