我试图在您销售优质葡萄酒时标记您提供的信息,这就是它的样子:http://www.google.com/webmasters/tools/richsnippets?url=dekoninck.co.uk%2Fwine.html。
Rich Snippets工具显示“警告:使用schema.org不完整的微数据。,我无法弄清楚缺少什么。
另外,我喜欢
的建议additionalType
additionalType
manufacturer
完成releaseDate
完成businessFunction http://purl.org/goodrelations/v1#Maintain
答案 0 :(得分:1)
我已经弄明白警告意味着什么。看起来丰富的片段测试工具不再接受Offer嵌套在Product中。
在我之前
<div itemscope itemtype="http://schema.org/Product">
... details
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
... details
</div>
</div>
修复(至少使警告消失)是将产品移出产品:
<div itemscope itemtype="http://schema.org/Product">
... details
</div>
<div itemscope itemtype="http://schema.org/Offer">
... details
</div>
这看起来不错吗?