Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 WordPress 网站位于英国。我能够将 html属性lang从更改en-US为en-GB,但是当我查看我的源代码时og:locale,打开图形的属性显示为en-US,它是由 yoast SEO 插件生成的。有没有办法将语言环境更改为en-GB?
lang
en-US
en-GB
og:locale
从文档中:
wpseo_locale (string) 允许更改 opengraph 集中使用的语言环境(以后可能在其他位置)。
wpseo_locale (string)
允许更改 opengraph 集中使用的语言环境(以后可能在其他位置)。
这是其他人如何在functions.php中解决它的具体示例:
add_filter('wpseo_locale', 'override_og_locale'); function override_og_locale($locale) { return "en_GB"; }
...