1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: User Language Admin Toolbar |
---|
4 | Plugin URI: https://core.trac.wordpress.org/ticket/26511 |
---|
5 | Description: Test plugin for #26511 and #29783 |
---|
6 | Author: Pascal Birchler |
---|
7 | Author URI: https://pascalbirchler.com |
---|
8 | Version: 1.0 |
---|
9 | */ |
---|
10 | |
---|
11 | |
---|
12 | add_action( 'admin_init', function () { |
---|
13 | switch_to_locale( get_user_locale() ); |
---|
14 | }, 0 ); |
---|
15 | |
---|
16 | add_action( 'template_redirect', function () { |
---|
17 | switch_to_locale( get_user_locale() ); |
---|
18 | }, 0 ); |
---|
19 | |
---|
20 | add_action( 'template_redirect', function () { |
---|
21 | restore_previous_locale(); |
---|
22 | }, 1 ); |
---|
23 | |
---|
24 | add_action( 'wp_footer', function () { |
---|
25 | switch_to_locale( get_user_locale() ); |
---|
26 | }, 999 ); |
---|
27 | |
---|
28 | add_action( 'add_admin_bar_menus', function () { |
---|
29 | restore_previous_locale(); |
---|
30 | }, 1001 ); |
---|