如何添加 meta 属性="og:locale" content="?"

How add meta property="og:locale" content="?"

我看过几篇不同的文章,我想知道,以确保什么是正确的, 如何添加 meta og:locale 示例:en_US or en-US 哪个是正确的?还是相同?

在我的网站上我是这样添加的

<meta property="og:locale" content="en_US"/>

根据他们的文档http://ogp.me/

og:locale - The locale these tags are marked up in. Of the format language_TERRITORY. Default is en_US.

接受的格式是 en_US,因此您的元 属性 标记的格式正确。如果您想添加其他语言,可以使用

<meta property="og:locale:alternate" content="fr_FR" />
<meta property="og:locale:alternate" content="es_ES" />

如其网站所述。