WC_Countries::get_base_city()
Get the base city for the store.
Method of the class: WC_Countries{}
Hooks from the method
Return
String
.
Usage
$WC_Countries = new WC_Countries(); $WC_Countries->get_base_city();
WC_Countries::get_base_city() WC Countries::get base city code WC 9.3.3
public function get_base_city() { $base_city = get_option( 'woocommerce_store_city', '' ); return apply_filters( 'woocommerce_countries_base_city', $base_city ); }