如何在按月付费的产品/服务上实施丰富摘要?

Cam*_* Co 3 schema.org google-rich-snippets

使用这些但它没有验证:

<div itemscope itemtype="http://schema.org/Product">
  <h1 itemprop="name">Product</h1>
  <span itemprop="description">Product
  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    Prices start at <meta itemprop="priceCurrency" content="PHP" />Php
    <span itemprop="price">1799.00 (monthly)
  </div>    
</div>
Run Code Online (Sandbox Code Playgroud)

uno*_*nor 6

要表示订阅成本(对于Offer),您可以使用UnitPriceSpecificationtype及其unitCodeproperty

\n\n

\xe2\x80\x99s值unitCode可以是 UN/CEFACT 通用代码,其中MON是月份代码。

\n\n

在微数据中,这可能看起来像:

\n\n
<div itemscope itemtype="http://schema.org/Product">\n\n  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">\n\n    <div itemprop="priceSpecification" itemscope itemtype="http://schema.org/UnitPriceSpecification">\n      Prices start at <meta itemprop="priceCurrency" content="PHP" />Php\n      <span itemprop="price">1799.00</span>\n      <meta itemprop="unitCode" content="MON">(monthly)\n    </div>\n\n  </div>    \n\n</div>\n
Run Code Online (Sandbox Code Playgroud)\n

  • 谢谢。我真的很喜欢这种方法,但最好有一个示例参考(例如 Google 上的 Schema.org 网站)来确认这是可行的方法。 (2认同)