WP_Multilingual language switchers samples
-
lets share by some codes of language switchers?
simple active languages only switcher<?php $str = "<div id='switchlangs'>"; $str .= "<h3>".__('Languages')."</h3>"; $str .= "<ul>"; foreach($GLOBALS['AviableLanguages'] as $_K=>$_I){ $str .= "<li>"; if ($_I['lang_shortcode'] != $language){ $str .= "<a href='".WPML::LanguageLink($_SERVER['REQUEST_URI'], $_I['lang_shortcode'])."'>".$_I['name']."</a>"; } $str .= "</li>"; } $str .= "</ul></div>"; echo $str; ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘WP_Multilingual language switchers samples’ is closed to new replies.