Skip to content

Instantly share code, notes, and snippets.

@ceccode
Created June 29, 2015 08:28
Show Gist options
  • Select an option

  • Save ceccode/eea8491028bb28bed11a to your computer and use it in GitHub Desktop.

Select an option

Save ceccode/eea8491028bb28bed11a to your computer and use it in GitHub Desktop.
WPML lang switcher
<?php
$languages = icl_get_languages('skip_missing=0&orderby=code');
if(!empty($languages)){
$i = 0;
$numItems = count(languages);
foreach($languages as $l){
if(!$l['active']) {
echo '<a href="'.$l['url'].'">';
}
echo $l['language_code'];
if(!$l['active']) {
echo '</a>';
}
if(++$i === $numItems) {
echo "/";
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment