When you want to switch the display to another language , such as Facebook and plug-ins Twitter.
I will describe the following in php in such a case.
<?php if (ICL_LANGUAGE_CODE=='en') { // English ?> Display English <?php } else { // Japanese ?> Display Japanese <? } ?>
サイトを多言語化する際に、TwitterやFacebookプラグインなどのように言語別に表示を切り替えたい場合があります。
そんな時はphpで以下のように記述します。
<?php if (ICL_LANGUAGE_CODE=='en') { // English ?> Display English <?php } else { // Japanese ?> 日本語を表示 <? } ?>