matias2
9/3/2019 - 6:10 PM

WMPL cambio de idioma por codigo

/*---- Tres idiomas ----*/
<?php
if (ICL_LANGUAGE_CODE == "fr") {
    //show the form in French
} elseif (ICL_LANGUAGE_CODE == "de") {
    //show the form in German
} else {
    //show the default form in English
}
?>



/*---- Dos Idiomas ----*/
<?php
    if (ICL_LANGUAGE_CODE == "es") { ?>
        ÚLTIMO PARTID
    <?php } else { ?>
        ÚLTIMO JOGO
    <?php }
?>