Get language code of WPML

后端 未结 2 807
傲寒
傲寒 2021-01-16 18:04

I\'m trying to get the language code of the WPLM wordpress plugin. This is how I\'m doing it without luck:



        
相关标签:
2条回答
  • 2021-01-16 18:28
    <?php if (substr(ICL_LANGUAGE_CODE,0,2) == 'es') { ?>
        <p>Spanish text</p>
    <?php> ?>
    
    0 讨论(0)
  • 2021-01-16 18:33

    es_En isn't a valid language code. You'll want to just use es:

    <?php if (ICL_LANGUAGE_CODE == 'es'): ?>
        <p>Spanish text</p>
    <?php endif; ?>
    
    0 讨论(0)
提交回复
热议问题