[Hyvor Blogs] Rich Schema Support

Hyvor Blogs now automatically adds rich schema/structured data to posts to improve SEO. This helps search engines understand the content of your posts better. The default schema type is BlogPosting since our main focus is on blogs.

Technical Implementation

Hyvor Blogs uses JSON-LD to add structured data to your posts. Here is an example of the structured data added to a post:

<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "BlogPosting",
    "headline": "How to start a blog",
    "datePublished": "2024-01-01T00:00:00Z",
    "dateModified": "2024-01-01T00:00:00Z",
    "author": [
        {
            "type": "@Person",
            "name": "John Doe",
            "url": "https://blog.hyvorblogs.io/author/john-doe"
        }
    ],
    "image": [
        "https://blog.hyvorblogs.io/media/how-to-start-a-blog.png"
    ]
}
</script>

See Google’s help article for more information on how Rich Snippets work.

How to disable rich schema

If you want to disable this feature, turn off the “Rich Schema” option at Console → Settings → SEO.

1 Like