WP_Locale_Switcher::init()
Initializes the locale switcher.
Hooks into the locale filter to change the locale on the fly.
{} It's a method of the class: WP_Locale_Switcher{}
No Hooks.
Return
null
. Nothing.
Usage
$WP_Locale_Switcher = new WP_Locale_Switcher(); $WP_Locale_Switcher->init();
Changelog
Since 4.7.0 | Introduced. |
Code of WP_Locale_Switcher::init() WP Locale Switcher::init WP 6.0
public function init() { add_filter( 'locale', array( $this, 'filter_locale' ) ); }