wc_importer_current_locale()WC 3.1.0

Importer current locale.

Хуков нет.

Возвращает

Строку.

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

wc_importer_current_locale();

Список изменений

С версии 3.1.0 Введена.

Код wc_importer_current_locale() WC 8.7.0

function wc_importer_current_locale() {
	$locale = get_locale();
	if ( function_exists( 'get_user_locale' ) ) {
		$locale = get_user_locale();
	}

	return $locale;
}