Last active
June 15, 2016 13:26
-
-
Save karrikas/4ef8dc6efa786bf2aa882a362ed1760d to your computer and use it in GitHub Desktop.
WPML Custom language menu
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 | |
| 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