Wordpress:两种语言的language_attributes?

时间:2017-01-21 06:04:55

标签: php html wordpress wordpress-theming

我有一个多语言WordPress网站 我想更改每个网站的language_attributes。

目前英语和法语都有

 <html lang="eng" prefix="og: http://ogp.me/ns" class=" ">

OR

更改language_attribute而不更改仪表板语言

我想改变它,我该怎么做?

1 个答案:

答案 0 :(得分:1)

如果您的默认语言是来自管理员的英语,那么下面的代码可以在标题html标记中更改您的语言。

function change_locale($locale){
    //check if french website
    if(//french website){
        $locale = 'fr_FR';
    }
    else{
        $locale = 'en_US';
    }   
    return $locale;
}
add_filter('locale','change_locale',10);