google rich-snippets 无法识别名称
google rich-snippets won't recognize name
Google 识别我的所有 itemprops 除了 name。但我在那里没有做任何不同的事情。您知道可能缺少什么吗?
<div id="itemAll" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span id='myId' itemprop='name'>Product</span>
</div>
试试改成双引号 ""
<span id="myId" itemprop="name">Product</span>
并将产品名称与此模式链接起来
<a itemscope itemtype="http://schema.org/Product" href="/product/url"> Product title</a>
或者您可以使用 Google 的微数据标记工具
Google 识别我的所有 itemprops 除了 name。但我在那里没有做任何不同的事情。您知道可能缺少什么吗?
<div id="itemAll" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span id='myId' itemprop='name'>Product</span>
</div>
试试改成双引号 ""
<span id="myId" itemprop="name">Product</span>
并将产品名称与此模式链接起来
<a itemscope itemtype="http://schema.org/Product" href="/product/url"> Product title</a>
或者您可以使用 Google 的微数据标记工具