switch_to_user_locale()
Switches the translations according to the given user's locale.
Хуков нет.
Возвращает
true|false
. True on success, false on failure.
Использование
switch_to_user_locale( $user_id );
- $user_id(int) (обязательный)
- User ID.
Заметки
- Global. WP_Locale_Switcher. $wp_locale_switcher WordPress locale switcher object.
Список изменений
С версии 6.2.0 | Введена. |
Код switch_to_user_locale() switch to user locale WP 6.6.2
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 ); }