Skip to content

Instantly share code, notes, and snippets.

@matteotrap
Last active April 12, 2024 22:38
Show Gist options
  • Save matteotrap/5775410 to your computer and use it in GitHub Desktop.
Save matteotrap/5775410 to your computer and use it in GitHub Desktop.
WPML - Active Languages list
<?php
$languages = icl_get_languages();
foreach($languages as $l){
$langs[] = '<li><a href="'.$l['url'].'">'.$l['native_name'].'</a></li>';
}
echo join('', $langs);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment