Search code examples
phphtmlwordpresswordpress-theming

Change HTML language from en-US in to en-GB in WordPress?


This may sound like a simple and trivial question, but I'm using the following tag in a WordPress theme header file:

<html <?php language_attributes(); ?>>

Which is outputting:

<html dir="ltr" lang="en-US">

I wish to change the lang attribute to "en-GB" as my blog and the language posts are written in are British English (en-GB) but I can't find where this parameter is set in the WordPress admin settings, and there isn't a value for it in the wp_options database table either, which leaves me to believe setting the lang value must be some sort of dark art?


Solution

  • Define the language attribute using:

    define ('WPLANG', 'en-GB');
    

    You can get more information on it at http://codex.wordpress.org/Installing_WordPress_in_Your_Language