Skip to content

Instantly share code, notes, and snippets.

@karrikas
Last active June 15, 2016 13:26
Show Gist options
  • Select an option

  • Save karrikas/4ef8dc6efa786bf2aa882a362ed1760d to your computer and use it in GitHub Desktop.

Select an option

Save karrikas/4ef8dc6efa786bf2aa882a362ed1760d to your computer and use it in GitHub Desktop.
WPML Custom language menu
<?php
function wpml_languages_list() {
$languages = icl_get_languages('skip_missing=0');
if(!empty($languages)){
echo '<div id="icl_lagunage_menu"><ul>';
foreach($languages as $l){
echo '<li>';
if($l['active']) {
$class = ' class="active"';
}
echo sprintf('<a%s href="%s"><span>%s</span></a>', $class, $l['url'], $l['tag']);
echo '</li>';
}
echo '</ul></div>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment