change_locale
Fires when the locale is switched to or restored.
Использование
add_action( 'change_locale', 'wp_kama_change_locale_action' ); /** * Function for `change_locale` action-hook. * * @param string $locale The new locale. * * @return void */ function wp_kama_change_locale_action( $locale ){ // action... }
- $locale(строка)
- The new locale.
Список изменений
С версии 4.7.0 | Введена. |
Где вызывается хук
change_locale
wp-includes/class-wp-locale-switcher.php 295
do_action( 'change_locale', $locale );
Где используется хук в WordPress
wp-includes/default-filters.php 554
add_action( 'change_locale', 'create_initial_post_types' );
wp-includes/default-filters.php 636
add_action( 'change_locale', 'create_initial_taxonomies' );
wp-includes/default-filters.php 655
add_action( 'change_locale', array( 'WP_Widget_Media', 'reset_default_labels' ) );