restore_current_locale

函数
restore_current_locale ( No parameters )
返回值
  • (string|false) Locale on success, false on error.
定义位置
相关方法
restore_current_blogrestore_previous_localeset_current_screenget_current_screenget_user_locale
引入
4.7.0
弃用
-

restore_current_locale: 这是一个WordPress的函数,在临时切换到一个不同的locale后,恢复当前的locale。一个locale是一组参数,定义了用户的语言、国家和文化偏好。WordPress使用locale来向用户显示本地化的内容和信息: 当用户切换到一个不同的locale时,WordPress使用新的locale来显示内容。要切换回原来的locale,要调用repare_current_locale来恢复原来的locale。

根据原始的语言环境恢复译文。

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

	return $wp_locale_switcher->restore_current_locale();
}

常见问题

FAQs
查看更多 >