每个子页面上都有不同的ld-json 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/",

所有其他属性,如:地址、地理位置、电话、电子邮件、徽标、开放时间、hasMap等,对于所有子页面都是相同的。这些ld-json模式是否有助于为我的网站服务页面获取谷歌丰富的片段?

Google不支持为富代码段服务提供结构化数据。然而,这并不意味着谷歌会简单地丢弃你的(可能相关的(结构化数据。这些数据可能适用于语音搜索,也可能被谷歌知识图谱API抓取。

谷歌需要结构化数据来表示数据所指的每个单独的内容:

您的结构化数据必须是页面的真实表示所容纳之物

因此,如果您的网页内容代表本地企业,请使用类型LocalBusiness。这同样适用于提供服务的页面。

最新更新