switch_locale
Fires when the locale is switched.
Description
Parameters (1)
- 0. $locale (string)
- The new locale.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'switch_locale', $locale );
- The following example is for adding a hook callback.
- // define the switch_locale callback
- function action_switch_locale( $locale ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'switch_locale', 'action_switch_locale', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'switch_locale', 'action_switch_locale', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-locale-switcher.php
- do_action( 'switch_locale', $locale );