My wordpress blog is set up as de_DE
.
This means that my login page is also displayed in de_DE
.
I would like to only have the login page in en_US
.
So, How would I programmatically change a single page’s language?
Note: I have WPML but I don’t wish to use it, I only want to change one page on the whole site.
This will need to go in a plug-in, just put the following inside a file (
login-languge.php
) inwp-content/plugins/
You can repalce
define( 'WPLANG', 'de_DE');
in your wp-config.php by this code structuer.Another way you can do this in your
functions.php
usingunload_textdomain($domain)