我将以下代码作为Product
的一部分:
<tr>
<th>Width:</th>
<td itemprop="width" href="http://schema.org/QuantitativeValue">
<?php echo $product->width."mm"; ?>
</td>
</tr>
不幸的是,它会产生以下错误:
此时元素
href
上不允许使用属性td
。
答案 0 :(得分:1)
width
property期望一个项目(Distance
或QuantitativeValue
)为值。
所以你需要这样的东西:
<td itemprop="width" itemscope itemtype="http://schema.org/QuantitativeValue">
</td>