我正在尝试为我的产品页面创建 Google Rich Snippets。
我创建了一个产品使用
<div itemscope="" itemtype="http://schema.org/Product">
...
</div>
在这个产品中,我有一个报价,创建于
<div itemscope="" itemtype="http://schema.org/Product">
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
...
</div>
</div>
我想将卖方属性(一个组织)添加到报价中,但是,我的 HTML 结构在产品下而不是报价下有卖方。
<div itemscope="" itemtype="http://schema.org/Product">
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
...
</div>
<div itemprop="seller" itemscope="" itemtype="http://schema.org/Organization">
...
</div>
</div>
但是,这似乎并没有让 Google 结构化数据测试工具满意。
然后我尝试itemref
在组织上使用并meta
在报价中使用 -tag
<div itemscope="" itemtype="http://schema.org/Product">
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<meta itemprop="seller" itemref="provider">
...
</div>
<div id="provider" itemscope="" itemtype="http://schema.org/Organization">
...
</div>
</div>
但它似乎仍然不承认卖方是组织。
我究竟做错了什么?