我在我的网站上提供了产品,该产品位于some_category>子类别> another_subcategory。如何使用微数据显示此层次结构?
答案 0 :(得分:0)
Schema.org/Offer的属性 category 实际上是允许您这样做的任何类型( PhysicalActivityCategory或Text或Thing )。 该物业的描述说
项目的类别。可以使用更大的符号或斜线 非正式地表明类别层次结构。
所以我猜它会像
<div itemscope itemtype="http://schema.org/Offer">
<span itemprop="category">
some_category > subcategory > another_subcategory
</span>
</div>