Skip to content

Instantly share code, notes, and snippets.

@Muetze42
Last active December 21, 2021 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Muetze42/b14e0b817445485fee7d8dabeb649260 to your computer and use it in GitHub Desktop.
Save Muetze42/b14e0b817445485fee7d8dabeb649260 to your computer and use it in GitHub Desktop.
WordPress: HTML lang in ISO 639-1 Language Codes
<?php
add_filter('language_attributes', function () {
return 'lang="'.explode('-', get_bloginfo('language'))[0].'"';
}, 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment