WC_Countries::get_base_city()publicWC 1.0

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() code 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 );
}