我想将 schema.org 标记添加到产品页面。所以基本上所有的页面都包裹在一个:<div itemscope itemtype="http://schema.org/Product">
该页面显示了我标记的产品名称itemprop="name"
,它显示了我标记的图像itemprop="image"
等。
为了标记商品的价格和类别,我使用http://schema.org/Offer。问题是价格和类别显示在网页的不同部分。itemtype=http://schema.org/Offer
在下面的例子中使用两次可以吗?
<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name">Name of product</span>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="category">animals</span>
</div>
<img itemprop="image" src="#"/>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="price">1000 EUR</span>
</div>
</div>