php - Change HTML language from en-US in to en-GB in WordPress? -
this may sound simple , trivial question, i'm using following tag in wordpress theme header file:
<html <?php language_attributes(); ?>>
which outputting:
<html dir="ltr" lang="en-us">
i wish change lang
attribute "en-gb" blog , language posts written in british english (en-gb) can't find parameter set in wordpress admin settings, , there isn't value in wp_options
database table either, leaves me believe setting lang
value must sort of dark art?
define language attribute using:
define ('wplang', 'en-gb');
you can more information on @ http://codex.wordpress.org/installing_wordpress_in_your_language
Comments
Post a Comment