Created
May 1, 2014 21:10
-
-
Save barbwiredmedia/060fb519f7a921eee1c0 to your computer and use it in GitHub Desktop.
Wordpress qTranslate plugin conditional for in the template. For in navigation menus use <!--:en-->Home<!--:--><!--:es-->Inicio<!--:--> as a switch
This file contains 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') { ?> | |
<!-- stuff for English --> | |
<?php } elseif (qtrans_getLanguage() == 'es') { ?> | |
<!-- other stuff Spanish --> | |
<?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment