
Breadcrumbs are a secondary navigation trail that shows where the current page sits within a site's hierarchy.
A breadcrumb usually appears near the top of a page as a row of links, such as Home > Category > Subcategory > Current Page. It reflects the structural path to the page rather than the user's click history. Each step except the last is a link, letting visitors move up the hierarchy in one click.
For users they reduce friction by making the site structure visible and giving an easy way back to parent sections. For SEO they reinforce site architecture: the internal links in a breadcrumb help search engines understand how pages relate and distribute relevance through the hierarchy. They also create logical, descriptive internal links using real category names rather than generic anchors.
Breadcrumbs can be marked up with BreadcrumbList structured data, which lets search engines display the hierarchy in place of a raw URL in the results. The markup should mirror the visible trail and the actual path to the page. Keep the trail consistent with your real canonical structure so the hierarchy you advertise matches the one search engines crawl.
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://example.com/" },
{ "@type": "ListItem", "position": 2, "name": "Guides", "item": "https://example.com/guides/" }
]
}Related: Canonical Tag, Missing Structured Data, Crawl Budget Explained
Claude Vincent is a technical SEO consultant focused on crawlability, rendering, and AI-search visibility. He writes the field guides and case studies at SEO ProCheck, with a bias toward the durable, unglamorous work that decides whether search engines and AI answer engines can actually read and cite a site.
About SEO ProCheck
Technical SEO consulting and GEO strategy with 20 years of enterprise experience. Case studies, resources, and tools for search and AI visibility.
Work With Me
Technical SEO audits, GEO strategy, site migrations, and international SEO. Hourly consulting for teams who need hands-on support, not just reports.







