我的页面上有这个:
<div itemscope itemtype="http://schema.org/Person">
<a href="john.html" itemprop="url">John W</a>
</div>
<div itemscope itemtype="http://schema.org/Person">
<a href="chloe_m.html" itemprop="url">Chloe M</a>
</div>
...
但我的所有项目都有错误:缺少:名称
有什么问题?
答案 0 :(得分:1)
我认为您只需添加itemprop="name"
元素,如下所示:
<div itemscope itemtype="http://schema.org/Person">
<a href="john.html" itemprop="url">
<span itemprop="name">John W</span>
</a>
</div>
<div itemscope itemtype="http://schema.org/Person">
<a href="chloe_m.html" itemprop="url">
<span itemprop="name">Chloe M</span>
</a>
</div>
底部的微数据示例