제품 리치 스 니펫의 경우 schema.org/AggregateOffer을 사용해보십시오. 주요 사용 사례가 다른 판매자가 제공하는 하나의 제품을 표시하는 것이지만, 귀하에게도 적합합니다. 최저 가격과 최고 가격을 표시 할 수 있습니다. 맞춤형 제품에 대해서도 가격 한도가 있다고 생각합니다.
귀하의 사이트에있는 제품에 대한 리뷰가있는 경우 Review Rich Snippets이 적합합니다. 이 경우 schema.org/Review 또는 schema.org/AggregateRating을 사용하십시오. 모두
예 :
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="cute_dress.jpg" />
<span itemprop="name">Very Cute Dress</span>
<div itemprop="aggregateRating"
itemscope itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue">87</span>
out of <span itemprop="bestRating">100</span>
based on <span itemprop="ratingCount">24</span> user ratings
</div>
<div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
<span itemprop="lowPrice">$1250</span>
to <span itemprop="highPrice">$1495</span>
</div>
</div>
것이다 give 당신
Breadcrumbs 당신을위한 또 다른 옵션입니다. schema.org의 breadcrumbs는 지저분하고 불완전하기 때문에 data-vocabulary.org를 사용하십시오.
예 :
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/dresses" itemprop="url">
<span itemprop="title">Dresses</span>
</a> ›
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/dresses/real" itemprop="url">
<span itemprop="title">Real Dresses</span>
</a> ›
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/clothes/dresses/real/green" itemprop="url">
<span itemprop="title">Real Green Dresses</span>
</a>
</div>
give 당신이
우리는 게시 할 수 없습니다 것입니다 가격은 내가 빵 부스러기와 막대기 것 같아 너무 다양합니다. 귀하의 의견에 감사드립니다. – Jay1980
도움이 되니 기쁩니다! – ajax