我有一个结构化的面包屑,如下所示:
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/">
<span itemprop="name">Home</span>
</a>
<span itemprop="position" content="1">></span>
</li>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/furniture/">
<span itemprop="name">Furniture</span>
</a>
<span itemprop="position" content="2">></span>
</li>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/arts/furniture/kitchen/">
<span itemprop="name">Kitchen</span>
</a>
<span itemprop="position" content="3"></span>
</li>
</ol>
在每个li
项目的结尾,我有itemprop
position
content
,1、2、3。这些值必须是连续的,或者只需要增加?例如3、5、7。
答案 0 :(得分:0)
我把它放在SDTT页面的底部,看看会发生什么。当您提供了有序列表'OL'时,数字应该与您一样升序排列。 SDTT似乎并不真正在乎增量值。如果特定位置值表示您要实现的系统中更有意义的内容,则不必担心完美的排序。 (我喜欢系统化)。如果您的物品数量很少,请保持简洁,整洁,不要招致命运。