Something like I have on my Jekyll blog:
view-source:https://takanodan.net/2019/02/shield-hero/
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Review",
"itemReviewed": {
"@type": "Thing",
"name": "The Rising Of The Shield Hero Ep. 1 - 5 review"
},
"author": {
"@type": "Person",
"name": "Giacomo"
},
"datePublished": "2019-02-11",
"reviewRating": {
"@type": "Rating",
"ratingValue": "4.5",
"bestRating": "5"
}
}
</script>
How can I do this in order to increase SEO, but avoid having the table at the bottom of the post?
More info on the schema: https://schema.org/Review
Thanks
-
This topic was modified 7 years by
GiacomoLaw.
Hi,
If you should use the theme review system the necessary review meta will be added automatically.
But you could use a different review system and add the meta with a plugin, for example
– https://kinsta.com/blog/schema-markup-wordpress/
Manually it would also possible by using the custom fields for example
– https://www.hostinger.com/tutorials/wordpress-schema-markup/
That Jekyll SEO seems to be a plugin from what I can find online, haven’t header of it up to this moment
– https://github.com/jekyll/jekyll-seo-tag
Thanks
Thanks. I’m using the theme one as I want to avoid plugins, but is there a way to hide the box?
Thanks!
So the box that appears at the bottom of the post that has a review
– http://prntscr.com/mtf3w1
I could give you a code for it if you want to remove it – http://prntscr.com/mtf4eu
.single .td-review {
display: none;
}
It will apply to all posts that have a review. If I misunderstand, please post a link to the page where you want to do this, and some more exact details.
As a note, when using cloud post templates, you can choose which review element appears in the post page. The review section is broken into 3 parts, use the ones you want
– http://prntscr.com/mtf5ln
Let me know.