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



switch_to_user_locale › WordPress Function

Seit6.2.0
Veraltetn/v
switch_to_user_locale ( $user_id )
Parameter:
  • (int) $user_id User ID.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True on success, false on failure.
Definiert in:
Codex:

Switches the translations according to the given user's locale.



Quellcode

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

	if ( ! $wp_locale_switcher ) {
		return false;
	}

	return $wp_locale_switcher->switch_to_user_locale( $user_id );
}