Search code examples
htmlwordpresslang

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


How can i change HTML lang from en-us to en-uk, i have selected en-uk in wordpress dashboard but its displaying en-gb <html lang="en-GB">.

Simply i want to change <html lang="en-US"> to: <html lang="en-UK">


Solution

  • Inside the wp-config.php put the following line:

    $locale = 'en-UK';