wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



restore_current_locale › WordPress Function

Seit4.7.0
Veraltetn/v
restore_current_locale ( Keine Parameter )
Gibt zurück:
  • (string|false) Locale on success, false on error.
Definiert in:
Codex:

Restores the translations according to the original locale.



Quellcode

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