有人可以建议为用户可以购买某些产品的页面添加正确的Schema.org标记的最佳方法吗?我在那里添加了Product
标记(针对Rich Snippets)。
我想增加询问有关此产品的问题的可能性,但我没有找到可用作嵌入式项目的属性。
示例:
<div itemscope="" itemtype="http://schema.org/Product">
<meta itemprop="brand" content="Brand">
<meta itemprop="url" content="URL">
......
<div id="question1" itemprop=??????? itemscope="" itemtype="http://schema.org/Question">
......
<div id="answer1" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
<div id="answer2" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
</div>
...
<div id="question10" itemprop=??????? itemscope="" itemtype="http://schema.org/Question">
......
<div id="answer1" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
<div id="answer2" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
</div>
</div>
答案 0 :(得分:1)
没有属性可以向Question
添加Product
但有一个属性可以传达Question
与Product
:about
有关。
有多种方法可以用微数据来标记它。以下是使用itemref
:
<div id="product-42" itemprop="about" itemscope itemtype="http://schema.org/Product">
</div>
<div itemscope itemtype="http://schema.org/Question" itemref="product-42">
</div>
<div itemscope itemtype="http://schema.org/Question" itemref="product-42">
</div>
要将Answer
与Question
相关联,您可以使用suggestedAnswer
/ acceptedAnswer
。