I will have two admin users, one of them only speaking italian and the other only speaks english. How can I setup multi-language admin user interface?
|
There are a couple of methods that this can be done without the overhead of plugins. Method 1The first method involves hooking to the (This must go into a separate plugin)
Method 2This method involves modifying your wp-config.php file in order to conditionally set
With this in your wp-config.php you are able to provide an additional GET parameter to set the language for the session. http://yoursite.com/wp-admin/?lang=it will set the Alternatively you can store the chosen language in the cookies with |
||||
|
|
|
There are some plugins that will do it for you. I think one is called wp native dashboard' allows user tochoose language from those installed Another one called 'in their language ' is simple but effective - attempts to determine preferred language from the browser settings. Of course you must also have the wp language files loaded for the languages that you want to support in the admin area. http://codex.wordpress.org/WordPress_in_Your_Language |
||||
|
|
