Wordpress, how to change your language.
I just tried to change the language of my Wordpress blog, which at first sight was very easy…but I noticed that some of the language was actually hardcoded in the “themes” - which I don’t think is good application design. Therefore to change my blog completely from danish to english involved the following two steps:
In wp-config.php alter the following line:
define (’WPLANG’, ‘da_DK’);
It should be changed to: (’WPLANG’, ‘’);
However as just mentioned some of the language is also hardcoded in the themes. The themes are located in the folder: “wp-content/themes”. What I did was really simple, I renamed the existing folders (default & classic) to default1 & classic1 and thereafter I placed the default and classic folders from the enlish version of wordpress in the same folder, and apparently it worked fine.