restore_previous_locale

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

restore_previous_locale: 这是一个WordPress的函数,在暂时切换到一个不同的locale后,恢复以前的locale: 当你想在临时切换到一个新的locale后再切换回以前的locale时,这个函数很有用。

根据先前的locale来恢复翻译。

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

	return $wp_locale_switcher->restore_previous_locale();
}

常见问题

FAQs
查看更多 >