gpt4 book ai didi

data-structures - 标记价格范围 Schema.org

转载 作者:行者123 更新时间:2023-12-01 13:42:21 26 4
gpt4 key购买 nike

所以我已经用结构化数据完全标记了我的产品页面。我们对我们的一些页面有点卡住了。我们在某些产品页面上有价格范围,例如:

2.99 英镑 - 7.99 英镑

我们如何进行设置,我们已设法使用以下代码设置定价产品

<span itemprop="priceCurrency" >£</span>
<span itemprop="price" >44.00</span>

如果有人可以帮助解决这个问题,那就太棒了。

提前致谢。

最佳答案

您可以使用 PriceSpecification 的两个属性, minPricemaxPrice . Google 也需要 price 属性,因此我将价格作为 minPrice 包含在下面的代码段中。

<div itemscope itemtype="http://schema.org/Offer">
<span itemprop="name">Offer Name</span>
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<span itemprop="name">Product Name</span>
<span itemprop="description">Product Description</span>
</div>
<div itemprop="priceSpecification" itemscope itemtype="http://schema.org/PriceSpecification">
£<span itemprop="price minPrice">5.49</span>–
£<span itemprop="maxPrice">7.99</span>
(<span itemprop="priceCurrency">GBP</span>)
</div>
</div>

关于data-structures - 标记价格范围 Schema.org,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38918197/

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