正如我在木材文檔中已經看到了可以添加喜歡this多語言支持:
// Set language to French
putenv('LC_ALL=fr_FR');
setlocale(LC_ALL, 'fr_FR');
// Specify the location of the translation tables
bindtextdomain('myAppPhp', 'includes/locale');
bind_textdomain_codeset('myAppPhp', 'UTF-8');
// Choose domain
textdomain('myAppPhp');
{% trans "Hello World!" %}
{% trans string_var %}
{% trans %}
Hello World!
{% endtrans %}
問題是這樣的,我有靜態網站 - 將被翻譯成法語,但我無法從wp後端添加多語言內容。所以我相信,有一種更好的方式來實現用木材編寫的WordPress主題來實現多語言支持。
問題
我想知道什麼是建立與木材,實現了其多語言支持一個WordPress主題最好的和最可靠的方法。
有什麼最佳實踐嗎?