Created
May 8, 2014 05:24
-
-
Save fazlurr/c9bc0f8bddd357065902 to your computer and use it in GitHub Desktop.
Get current language - qTranslate
From : http://www.openscriptsolution.com/cms/wordpress/how-to-get-current-language-code-by-using-qtranslate-plugin-of-wordpress/
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 | |
| if(qtrans_getLanguage()=='en') { | |
| // put your code here if the current language code is 'en' (English) | |
| } elseif(qtrans_getLanguage()=='id') { | |
| // put your code here if the current language code is 'id' (Indonesian) | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment