restore_previous_locale()

Restores the translations according to the previous locale.


Description Description


Return Return

(string|false) Locale on success, false on error.


Top ↑

Source Source

File: wp-includes/l10n.php

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

	return $wp_locale_switcher->restore_previous_locale();
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.