使用这些,但它没有验证:
<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>
答案 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>