WC_Customer::set_billing_city()publicWC 1.0

Set billing_city.

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

Хуков нет.

Возвращает

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

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

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

Код WC_Customer::set_billing_city() WC 8.7.0

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