每个子页面上的不同 ld-json LocalBusiness 架构
Different ld-json LocalBusiness schema on each subpage
我有一家提供不同本地服务的公司。
像这样为每个服务子页面放置 LocalBusiness 架构是一个好习惯吗:
"@context" : "http://schema.org",
"@type" : "LocalBusiness",
"name" : "Service 1 title",
"description": "service 1 description",
"image" : [ "https://mywebsitehere.com/images/service_1.jpg"],
"url" : "https://mywebsitehere.com/offer/service_1/",
以及下一个服务,例如:
"@context" : "http://schema.org",
"@type" : "LocalBusiness",
"name" : "Service 2 title",
"description": "service 2 description",
"image" : [ "https://mywebsitehere.com/images/service_2.jpg"],
"url" : "https://mywebsitehere.com/offer/service_2/",
所有其他属性,例如:Address、Geo、Phone、Email、Logo、OpeningHours、hasMap 等对于所有子页面都是相同的。
这些 ld-json 模式是否有助于为我的网站服务页面获取 google 丰富网页摘要?
Google 不支持 rich snippets 服务的结构化数据。但是,这并不意味着 Google 会简单地丢弃您的(可能相关的)结构化数据。此数据可能适用于语音搜索,并且可能会被 Google 知识图 API。
抓取
Google requires 结构化数据以表示数据引用的每个单独内容:
Your structured data must be a true representation of the page
content.
因此,如果您的网页内容代表本地企业,请使用类型 LocalBusiness
。提供服务的页面也是如此。
我有一家提供不同本地服务的公司。 像这样为每个服务子页面放置 LocalBusiness 架构是一个好习惯吗:
"@context" : "http://schema.org",
"@type" : "LocalBusiness",
"name" : "Service 1 title",
"description": "service 1 description",
"image" : [ "https://mywebsitehere.com/images/service_1.jpg"],
"url" : "https://mywebsitehere.com/offer/service_1/",
以及下一个服务,例如:
"@context" : "http://schema.org",
"@type" : "LocalBusiness",
"name" : "Service 2 title",
"description": "service 2 description",
"image" : [ "https://mywebsitehere.com/images/service_2.jpg"],
"url" : "https://mywebsitehere.com/offer/service_2/",
所有其他属性,例如:Address、Geo、Phone、Email、Logo、OpeningHours、hasMap 等对于所有子页面都是相同的。 这些 ld-json 模式是否有助于为我的网站服务页面获取 google 丰富网页摘要?
Google 不支持 rich snippets 服务的结构化数据。但是,这并不意味着 Google 会简单地丢弃您的(可能相关的)结构化数据。此数据可能适用于语音搜索,并且可能会被 Google 知识图 API。
抓取Google requires 结构化数据以表示数据引用的每个单独内容:
Your structured data must be a true representation of the page content.
因此,如果您的网页内容代表本地企业,请使用类型 LocalBusiness
。提供服务的页面也是如此。