Breadcrumbs Essential Schema Example
SEO Help and Tips
Breadcrumbs Essential Schema Example
Here's an example of a schema markup for breadcrumbs:
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://www.yourwebsite.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Category",
"item": "https://www.yourwebsite.com/category"
},
{
"@type": "ListItem",
"position": 3,
"name": "Subcategory",
"item": "https://www.yourwebsite.com/category/subcategory"
},
{
"@type": "ListItem",
"position": 4,
"name": "Current Page",
"item": "https://www.yourwebsite.com/category/subcategory/current-page"
}
]
}
In this example:
"@type": "BreadcrumbList" indicates that the schema markup is for a breadcrumb list.
"itemListElement" contains an array of individual breadcrumb items.
Each breadcrumb item in the array is specified using "@type": "ListItem".
"position" indicates the position of the breadcrumb item in the list.
"name" represents the name or label of the breadcrumb item.
"item" specifies the URL of the corresponding page.
You can adjust the properties and values based on the specific breadcrumb structure and URLs of your website. You would typically include more breadcrumb items in the array to represent the hierarchy of the pages leading up to the current page.
Comments
Post a Comment
Thanks for your Comments.