gpt4 book ai didi

product - 'Product' 内问题和答案的 Schema.org 标记

转载 作者:行者123 更新时间:2023-12-04 17:51:01 34 4
gpt4 key购买 nike

有人可以建议为用户可以购买某些产品的页面添加正确的 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>

最佳答案

没有属性可以将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>

要将答案链接到问题,您可以使用suggestedAnswer/acceptedAnswer .

关于product - 'Product' 内问题和答案的 Schema.org 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44973411/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com