Automattic\WooCommerce\Internal\Admin\EmailPreview
EmailPreview::restore_locale
Restore the original locale.
Method of the class: EmailPreview{}
No Hooks.
Returns
null. Nothing (null).
Usage
// private - for code of main (parent) class only $result = $this->restore_locale();
EmailPreview::restore_locale() EmailPreview::restore locale code WC 10.7.0
private function restore_locale() {
if ( $this->locale_switched ) {
wc_restore_locale();
$this->locale_switched = false;
}
}