WC_Countries::get_base_city()
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 Countries::get base city WC 9.8.1
public function get_base_city() { $base_city = get_option( 'woocommerce_store_city', '' ); return apply_filters( 'woocommerce_countries_base_city', $base_city ); }