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
/** | |
* Language Selector Shortcode | |
*/ | |
function qtranxf_generateLanguageSelectorShortcode() { | |
global $q_config; | |
if(is_404()) $url = get_option('home'); else $url = ''; | |
echo PHP_EOL.'<div style="text-transform: uppercase;" class="lang-sel sel-dropdown"><a href="#"><span>'.$q_config['language'].'</span></a><ul>'.PHP_EOL; | |
foreach(qtranxf_getSortedLanguages() as $language) { |