is_locale_switched

函数
is_locale_switched ( No parameters )
返回值
  • (bool) True if the locale has been switched, false otherwise.
定义位置
相关方法
is_local_attachmentms_is_switchedlocale_stylesheetis_main_sitecheck_theme_switched
引入
4.7.0
弃用
-

is_locale_switched: 这个函数检查区域设置是否被切换了。WordPress支持多语言,这个函数检查用户是否切换到不同的语言。

确定 switch_to_locale() 是否生效。

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

	return $wp_locale_switcher->is_switched();
}

常见问题

FAQs
查看更多 >