Created
June 29, 2015 08:28
-
-
Save ceccode/eea8491028bb28bed11a to your computer and use it in GitHub Desktop.
WPML lang switcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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