wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



restore_current_locale › WordPress Function

Od4.7.0
Przestarzałyn/a
restore_current_locale ( Brak parametrów )
Powrót:
  • (string|false) Locale on success, false on error.
Zdefiniowane na:
Codex:

Restores the translations according to the original locale.



Źródło

function restore_current_locale() {
	/* @var WP_Locale_Switcher $wp_locale_switcher */
	global $wp_locale_switcher;

	if ( ! $wp_locale_switcher ) {
		return false;
	}

	return $wp_locale_switcher->restore_current_locale();
}