Skip to content

Instantly share code, notes, and snippets.

@hissy
Last active December 11, 2015 19:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hissy/4646884 to your computer and use it in GitHub Desktop.
Save hissy/4646884 to your computer and use it in GitHub Desktop.
[concrete5] Set <html lang=""> attribute value in multilingual site
<?php defined('C5_EXECUTE') or die("Access Denied.");
Loader::model('section', 'multilingual');
$ms = MultilingualSection::getCurrentSection();
if (is_object($ms)) {
$lang = $ms->getLanguage();
} else {
$lang = LANGUAGE;
}
?>
<!DOCTYPE html>
<html lang="<?php echo $lang?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment