我有一个商店页面,上面列出了他们正在销售的时装品牌。但我不确定要使用什么微数据模式。我正在使用来自schema.org的模式。
基本上,这个列表如下所示:
<span itemscope itemtype="http://schema.org/Store">
// Store info here
<ul id="brandList">
<li id="7750">
<div class="brandInfo">
<a href="http://...">Celine Engelstad</a>
</div>
<div class="logo">
<img title="Celine Engelstad" src="http://..." class="logo">
</div>
</li>
// More items here
</ul>
</span>
这是正确的原理图吗?
<span itemscope itemtype="http://schema.org/Store">
// Store info here
<span itemscope itemtype="http://schema.org/Product">
<ul id="brandList">
<li itemprop="productID" id="7750">
<div itemprop="manufacturer" class="brandInfo">
<a itemprop="url" href="http://...">Celine Engelstad</a>
</div>
<div itemprop="logo" class="logo">
<img itemprop="logo" title="Celine Engelstad" src="http://..." class="logo">
</div>
</li>
// More items here
</ul>
</span>
1)既然这不是产品清单,而是品牌清单,那么使用http://schema.org/Product
是正确的吗?
( 2)品牌名称既是一个名称,也是一个链接。我可以像我所做的那样使用嵌套itemprop
吗?
( 3)是否有必要使用itemprop="productID"
,因为这不是一个购买项目,但在我的网站上的品牌ID?
更新17.07.2013
在获得一些外部帮助后,我已经对列出品牌的商店实施了以下结构:
<ul class="brand-list>
<li id="426">
<span itemtype="http://schema.org/Organization" itemscope="">
<div class="brandInfo floatLef" itemprop="name">
<a href="#" class="" itemprop="url">American Retro</a>
</div>
</span>
</li>
</ul>
这是正确的使用,例如,在头版上的一节称为最受欢迎的品牌以及?
https://stackoverflow.com/questions/13848124
复制