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



switch_to_locale › WordPress Function

Seit4.7.0
Veraltetn/v
switch_to_locale ( $locale )
Parameter:
  • (string) $locale The locale.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True on success, false on failure.
Definiert in:
Codex:

Switches the translations according to the given locale.



Quellcode

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

	if ( ! $wp_locale_switcher ) {
		return false;
	}

	return $wp_locale_switcher->switch_to_locale( $locale );
}