2014-03-28 63 views
6

如果我列出了一個免費的在線產品,是否有建議的方式使用「免費」字樣來構建其價格而不是0.00美元?如何正確實施免費產品提供?

schema.org/Offer specification說價格的字符串表示形式必須是PriceSpecification類型,我不確定它的含義。

替代#1

<div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> 
    <span itemprop="price">Free</span> 
    <meta itemprop="priceCurrency" content="USD" /> 
</div> 

替代#2

<div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> 
    <span itemprop="description">Free</span> 
    <meta itemprop="price" content="0" /> 
    <meta itemprop="priceCurrency" content="USD" /> 
</div> 

我向替代#1傾斜(似乎是顯而易見的),但我已經沒有運氣找到明確指出使用的參考。

回答

6

替代#2是大多數搜索引擎抓取工具(如googlebot)執行的語義分析的正確方法。換句話說,谷歌會明白,第二種選擇是免費的。

+0

你能指出一個引用實現它這樣我可以檢查嗎? –

+1

[此帖子](https://plus.google.com/106943062990152739506/posts/XKZBodXtTaH),例如 – lambda2