设置一般Schema.org使用Microdata提供货币价值

时间:2016-05-26 07:55:46

标签: schema.org microdata

我的网站上有很多使用Schema.org Offer类型的优惠。

我可以以某种方式设置我网站上所有优惠价格的货币吗?或者我是否必须为每个优惠价格设置itemprop="priceCurrency"

1 个答案:

答案 0 :(得分:1)

不,无法为微数据属性设置网站范围的默认值。

如果单个页面包含多个Offer项,则可以使用Microdata的itemref属性(请参阅下面的示例)。但这并不适用于各页。

<head>
  <title>A page with two offers</title>
  <meta id="site-currency" itemprop="priceCurrency" content="EUR" />
  <!-- this 'meta' element can also be part of the 'body' element -->
</head>

<body>

  <div itemscope itemtype="http://schema.org/Offer" itemref="site-currency">
  </div>

  <div itemscope itemtype="http://schema.org/Offer" itemref="site-currency">
  </div>

</body>