我有一个关于 microfomats 的问题,更具体地说是 hreview-aggregate。一个客户前段时间实施了它们,但它们没有显示在 SERP 中,但谷歌的丰富片段测试工具显示它们运行良好。我看了一下代码,它目前是
<div class="hreview-aggregate">
<div class="rating-45 clearfix">
<span class="rating" title="4.383 of 5 stars">4.383 of 5 stars</span>
<a tabindex="0" href="https://www.example.com/category/" title="View all xxxx Reviews">
<span class="count">View all xxxx Reviews</span>
</a>
</div>
</div>
我将其更改为包括class="average"
class="best"
它们缺少的其他一些跨度。
<div class="hreview-aggregate">
<div class="rating-45 clearfix">
<span class="rating" title="4.383 of 5 stars"><span class="average">4.383</span> of <span class="best">5</span> stars</span>
<a tabindex="0" href="https://www.example.com/category/" title="View all xxxx Reviews">
View all <span class="count">xxxx</span> Reviews
</a>
</div>
</div>
更新后的代码最终会显示在 SERP 中吗?另外,页面只有评分没有评论,我应该使用 COUNT 还是 VOTES?