WC_Countries::get_base_city()publicWC 1.0

Get the base city for the store.

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

Хуки из метода

Возвращает

Строку.

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

$WC_Countries = new WC_Countries();
$WC_Countries->get_base_city();

Код WC_Countries::get_base_city() WC 8.7.0

public function get_base_city() {
	$base_city = get_option( 'woocommerce_store_city', '' );
	return apply_filters( 'woocommerce_countries_base_city', $base_city );
}