0

我正在尝试让 Google Rich Snippets Tool 在我的帖子上显示星星,但我找不到我显然犯过的错误。

http://www.google.com/webmasters/tools/richsnippets?url=http%3A%2F%2Fvpnstars.com%2Fvpn%2Fhide-my-ass%2F

我希望有人可以通过上面的链接指导我。

谢谢。

4

1 回答 1

1

下面的代码有效,请随意调整它以适应您的喜好。

<div itemscope itemtype="http://schema.org/LocalBusiness">
    <h1 itemprop="name">Title</h1>
    <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
        <div class="rating">
        <meta itemprop="ratingValue" content="4.0">
        </div>
        <span itemprop="reviewCount">33</span>
    </div>
</div>

快乐编码:)

于 2013-04-03T15:21:14.813 回答