Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fritids/adadae2bcbdfad3827ca to your computer and use it in GitHub Desktop.
Save fritids/adadae2bcbdfad3827ca to your computer and use it in GitHub Desktop.
/* Pierre de la Martinière
*
* display all languages avalaible for a Wordpress Theme using WPML
* directly echo something like "en fr it ru" ...
*
* more info at http://wpml.org/documentation/getting-started-guide/language-setup/custom-language-switcher/
*
*/
function language_selector_flags(){
if (function_exists('icl_get_languages')) {
$languages = icl_get_languages('skip_missing=0&orderby=name&order=asc');
echo '<div class="lang_selector">';
foreach($languages as $i=>$data):
echo '<a href="'.$data['url'].'">'.$i.'</a>';
endforeach;
echo '</div>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment