How to Add Rich Snippets for Blogger Post
Updated on 23 July
Go to your theme, find
<data:post.body/>
and put following code just after:
<script type='application/ld+json'>
{"@context":"http://schema.org/","@type":"Review","itemReviewed":{"@type":"Thing","name":"<data:post.title/>"},"author":{"@type":"Person","name":"<data:post.author/> "},"reviewRating":{"@type":"Rating","ratingValue":"10","bestRating":"10"},"publisher":{"@type":"Organization","name":"<data:post.author/>"}}
</script>
- Note:
- - Maybe in your theme have some code
<data:post.body/>
, so you must chose right. - - You can change score in marked code above.
0 comments for How to Add Rich Snippets for Blogger Post