我的WordPress网站位于英国。我能够将html lang
- 属性从en-US
更改为en-GB
,但是当我查看源代码时,打开图的og:locale
属性显示为{{1}它是由yoast SEO插件生成的。有没有办法将区域设置更改为en-US
?
答案 0 :(得分:6)
wpseo_locale (string)
允许更改opengraph集中使用的语言环境(以及稍后可能在其他位置)。
以下是a specific example其他人如何在functions.php中解决它:
add_filter('wpseo_locale', 'override_og_locale');
function override_og_locale($locale)
{
return "en_GB";
}