Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created April 29, 2019 11:18
Show Gist options
  • Save ABooooo/6527888345acc0d31e61697d32fc4bda to your computer and use it in GitHub Desktop.
Save ABooooo/6527888345acc0d31e61697d32fc4bda to your computer and use it in GitHub Desktop.
<div class="c-main-header__languageswitcher">
<ul class="u-no-liststyle">
<?php
$langs = array();
$languages = icl_get_languages( 'skip_missing=0' );
if( 1 < count( $languages ) ) {
foreach( $languages as $l ) {
$classes = ( $l['active'] == 1 ) ? 'is-active' : '';
$langs[] = '<li class="' . $classes . '"><a href="' . $l['url'] . '">' . $l['code'] . '</a></li>';
}
echo join(' ', $langs);
}
?>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment