3

使用这些但它没有验证:

<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>
4

1 回答 1

4

要表示订阅费用(对于Offer),您可以使用UnitPriceSpecification类型及其unitCode属性

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

在微数据中,这可能如下所示:

<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>
于 2014-11-20T09:26:57.007 回答