-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Adding JSON-LD structured data helps search engines understand the content better and can improve search result appearance.
Proposed Solution
Add structured data for:
- Website - site name, url, description
- BlogPosting - each post with title, date, author, image
- Person - author information
- BreadcrumbList - navigation structure
Example for BlogPosting
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "Post Title",
"datePublished": "2024-01-01",
"author": {
"@type": "Person",
"name": "Thai Son Dinh"
},
"image": "https://...",
"description": "Post excerpt"
}
</script>Acceptance Criteria
- JSON-LD added to post pages
- Website schema on homepage
- Valid structured data (test with Google Rich Results Test)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels