更改由yoast SEO插件设置的Wordpress区域设置

时间:2013-02-07 14:03:15

标签: php html wordpress wordpress-plugin

我的WordPress网站位于英国。我能够将html lang - 属性从en-US更改为en-GB,但是当我查看源代码时,打开图的og:locale属性显示为{{1}它是由yoast SEO插件生成的。有没有办法将区域设置更改为en-US

1 个答案:

答案 0 :(得分:6)

来自the documentation

  

wpseo_locale (string)

     

允许更改opengraph集中使用的语言环境(以及稍后可能在其他位置)。

以下是a specific example其他人如何在functions.php中解决它:

add_filter('wpseo_locale', 'override_og_locale');
function override_og_locale($locale)
{
    return "en_GB";
}