I am using the Author hreview WordPress plugin to show the star rating and it is working fine for me.
Get Star Rating in the Google Search Results (Without a Plugin)
Thatâs sign of Google Penalty. 2 years ago, I have faced that problem because I was using markup on each articles, that gifted me that problem. It automatically resolved but after a long time.
That happened with me as well, that too for both the sites. I immediately removed the plugin. Iâd suggest you all not to try that plugin. It may do more harm than good in the future.
I honestly have no idea about codes. Wait for a couple of days and see if it starts appearing on SERP. And the same issue happened with my first site. I think I was penalized by Google, as the keywords also started disappearing. Things returned to normal when I deleted that plugin. As I never learn from my first mistake, I used the same plugin for my second site as well. It worked fine for a couple of months, but then I noticed that stars stopped appearing for some articles. So I went ahead and disabled the plugin.
How about adding âBlogPostingâ Schema to all the posts under a specific category? Could it be done via GTM?
Will there be any problems if we use some fake ratings and number for Aggregate Rating schema?
https://webcode.tools/json-ld-generator/aggregate-rating
You can use if a page contains that number or review. Else, no. You should prefer single authored review.
Hi Gulshan, I have seen websites ranking first applying the markup in the typical âbest xxxxâ which is not a specific review but rather a guide with several brands as top rated. Do you think Google doesnât penalize now?
It depends on âmarkupâ what kind of they are using. A review markup is for review.
For âBest xyzâ, I see some guys use âVotesâ markup. For example, when I searched for âbest screen recorder for the Androidâ
Itâs showing because of below JSON-LD markup. Do note, the ratingCount = votes.
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.aiseesoft.com/screen-recorder/best-android-screen-recorder.html"
},
"headline": "Top 5 Best Screen Recorder Apps for Android",
"image": {
"@type": "ImageObject",
"url": "https://www.aiseesoft.com/images/screen-recorder/top-5-android-screen-recorder.jpg",
"height": 428,
"width": 696
},
"datePublished": "2016-01-18T19:33:54+08:00",
"dateModified": "2018-05-19T17:12:00+08:00",
"author": {
"@type": "Person",
"name": "Jenny Ryan"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.9",
"ratingCount": "60"
},
"publisher": {
"@type": "Organization",
"name": "Aiseesoft",
"logo": {
"@type": "ImageObject",
"url": "https://www.aiseesoft.com/style/images/logo.jpg",
"width": 186,
"height": 42
}
},
"description": "Want to record the screen of your Android phone? It is unnecessary to rely on the computer or other camera if you have the best Android Screen Recorder on your mobile phone."
}
</script>
I hope this helps.