is_locale_switched()

Whether switch_to_locale() is in effect.

Return

(bool) True if the locale has been switched, false otherwise.

Source

File: wp-includes/l10n.php

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

	return $wp_locale_switcher->is_switched();
}

Changelog

Version Description
4.7.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/is_locale_switched