Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display an article rating in Google search results

Tags:

Im writing a review site where the community rates posts. I have noticed that Google can pick up on this ratings and display them in its search results. Does anyone know how this is achieved?

An example is a review site like IGN, where in their screen shot below they have indicated their review has a rating of 9.3/10.

enter image description here

How can I indicate to Google my own review rating? Maybe some sort of custom meta tag or something.

like image 431
woot586 Avatar asked Aug 21 '11 14:08

woot586


People also ask

How do I add a rating on SERP?

Reviews stars markup allows you to add an overall rating to your SERPs. By adding specific structured data to your page you can enable it to show a star rating below the meta description. This is a great way catch the eye of potential customers.

How are Google reviews displayed?

In displaying the list of reviews, Google doesn't show the reviews in chronological order by default. Instead, reviews are shown by what Google refers to as "Most Relevant".

What are Google star ratings and how do they work?

In short, websites with star ratings in search use a reviews snippet that generate ratings and give a signal to Google to display this rich snippet alongside the search result. Some companies have seen an improvement in the click-through rate as great as 30% just from implementing Google star ratings in their search results.

Does your content belong to a specific Google review category?

In 2019 company announced that displays Google review stars for particular content types. Check the full list and monitor if your content belongs to one of the categories. 5. You used several markup languages

How do I add star ratings to my product page?

In short, you will need a schema.org code that will generate the aggregated rating of your reviews displayed on your webpage. 1. Add the schema code on a specific product page: Our research showed that Google doesn’t support star ratings on root domains/homepages.

What is a rating in a review?

In addition to the text of the review, a rating is an evaluation described on a numeric scale (such as 1 to 5). Review snippets may appear in rich results or Google Knowledge Panels. You can supply ratings for the following content types (and subtypes):


1 Answers

You can do that with a Span class. Check Google's Structure Data guide for Review:

A review is someone's evaluation of something. We support reviews and ratings for a wide range of schema.org types, including businesses, products, and different creative works such as books or movies.

Google displays the following types of reviews in search results:

  • Critic review: A snippet from a longer review article that a single editor has created, curated, or compiled for a publisher.

  • Review snippets: A rich result (previously known as a rich snippet) of a review or rating markup from a review website, usually an average of the combined rating scores from reviewers. Review snippets appear in Google Search results either under the search result or in the Google Knowledge Cards.

[...]

Here's an example of an aggregate rating.

<div itemscope itemtype="http://schema.org/Book">
  <h2 itemprop="name"> Super Book </h2>
  <div itemprop="description">Ultra interesting. Super impressive.</div>
  <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
    <div>Book rating:
      <span itemprop="ratingValue">88</span> out of 
      <span itemprop="bestRating">100</span> with
      <span itemprop="ratingCount">20</span> ratings
    </div>
  </div>
</div>
like image 116
Jordy Avatar answered Sep 30 '22 16:09

Jordy