WC_Countries::get_base_country()publicWC 1.0

Get the base country 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_country();

WC_Countries::get_base_country() code WC 8.7.0

public function get_base_country() {
	$default = wc_get_base_location();
	return apply_filters( 'woocommerce_countries_base_country', $default['country'] );
}