Multiple Schema.org Product items & how will it look like in search engine result?

心不动则不痛 提交于 2019-12-24 13:05:03

问题


I have implemented the Product Schema.org type similar to this on one single page:

<div itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Test name 1</span> <img src="test1.jpg" /> <span itemprop="description">Description test 1</span> <span itemprop="sku">#001</span> </div>  

<div itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Test name 2</span> <img src="test2.jpg" /> <span itemprop="description">Description test 2</span> <span itemprop="sku">#002</span> </div> 

<div itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Test name 3</span> <img src="test3.jpg" /> <span itemprop="description">Description test 3</span> <span itemprop="sku">#003</span> </div>

So, I am wondering whether this is okay to have three Product schemas in one page. And how it will look like on Google Search engine results?


回答1:


It’s perfectly fine to have multiple Product items on one page. This is even pretty common, for example for category or search pages listing several products.

What Google Search does or does not do with this markup may change at any point. Their documentation is at https://developers.google.com/structured-data/. It seems they currently don’t offer a Rich Snippet for product lists (their Product Rich Snippet is only for pages about a single product).



来源:https://stackoverflow.com/questions/33174785/multiple-schema-org-product-items-how-will-it-look-like-in-search-engine-resul

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!