具有相同社交媒体帐户的GMB多个位置

时间:2019-06-18 14:57:31

标签: wordpress schema social-networking jsonschema google-my-business-api

我有2个Google MyBusiness位置属于同一个产业(2个部分彼此对面)。他们链接到同一网站。我想通过两个GMB位置上的架构标记添加相同的社交媒体帐户。

我在主题选项下的自定义javascript部分中尝试了以下两个位置的标记。适用于我所有其他站点-但不适用于此站点,因为我假设有2个位置。唯一的区别是-我使用了两次代码(一次又一次),只是根据GMB位置更改了每个代码的名称。

`<script type="application/ld+json">
{ "@context" : "http://schema.org",
  "@type" : "Organization",
  "name" : "X Lifestyle Estate - Lifestyle Homes",
  "url" : "http://xlifestyle-estate.co.za",
  "sameAs" : [ "https://www.facebook.com/xlifestyleestate/",
    "https://www.instagram.com/xlifestyleestate/"] 
}
</script>`

`<script type="application/ld+json">
{ "@context" : "http://schema.org",
  "@type" : "Organization",
  "name" : "X Lifestyle Estate - Apartments",
  "url" : "http://xlifestyle-estate.co.za",
  "sameAs" : [ "https://www.facebook.com/xlifestyleestate/",
    "https://www.instagram.com/xlifestyleestate/"] 
}
</script>`

我的facebook和instagram链接未显示在我的2个GMB位置上。

0 个答案:

没有答案