我的网站上有很多使用Schema.org Offer
类型的优惠。
我可以以某种方式设置我网站上所有优惠价格的货币吗?或者我是否必须为每个优惠价格设置itemprop="priceCurrency"
?
答案 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>