如何在每月收费的产品/服务上实施Rich Snippets?

时间:2014-11-19 05:11:25

标签: 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>

1 个答案:

答案 0 :(得分:4)

要表示订阅费用(Offer),您可以使用UnitPriceSpecification type及其unitCode property

unitCode的值可以是UN / CEFACT公共代码,其中MON是月份的代码。

在Microdata中,这可能看起来像:

<div itemscope itemtype="http://schema.org/Product">

  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">

    <div itemprop="priceSpecification" itemscope itemtype="http://schema.org/UnitPriceSpecification">
      Prices start at <meta itemprop="priceCurrency" content="PHP" />Php
      <span itemprop="price">1799.00</span>
      <meta itemprop="unitCode" content="MON">(monthly)
    </div>

  </div>    

</div>