GSC Breadcrumbs Report: What It Means and How to Fix Errors
By Emily Redmond, Data Analyst at Emilytics Β· April 2026
TL;DR: Breadcrumbs are the navigation path shown in search results (Home > Category > Product). GSC's breadcrumbs report shows if your breadcrumb schema is valid. Errors mean Google can't read your breadcrumb markup. Fix the schema and revalidate.
Breadcrumbs are the navigation path shown in search results. They help users understand where they are on your site and improve CTR.
GSC's Breadcrumbs report tells you if Google can read your breadcrumb markup. Most sites don't use them. If you do, make sure they're correct.
What Are Breadcrumbs?
Breadcrumbs are a navigation aid. They show the path from the homepage to the current page.
Example in Google search results:
Home > Products > Dog Food > Best Dry Dog Food
Breadcrumbs:
- Show the page hierarchy
- Look better in search results
- Improve CTR (more information shown)
- Help users navigate
You typically see breadcrumbs in e-commerce and large content sites.
How Breadcrumbs Work
Breadcrumbs are added via schema markup (structured data). You tell Google the breadcrumb path, and Google shows it in search results.
Example markup for "Home > Products > Dog Food":
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://example.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Products",
"item": "https://example.com/products"
},
{
"@type": "ListItem",
"position": 3,
"name": "Dog Food",
"item": "https://example.com/products/dog-food"
}
]
}
Each breadcrumb has:
- Name: The text shown in search results
- Item: The URL of that breadcrumb item
- Position: The order (1, 2, 3, etc.)
Checking Your Breadcrumbs in GSC
Go to Enhancements β Breadcrumbs (if available in your region).
You'll see:
- Valid: Breadcrumbs Google can read and display
- Warnings: Issues but still readable (usually minor)
- Errors: Breadcrumbs Google can't read
If you see zero valid breadcrumbs and you have them, something's wrong.
π‘ Emily's take: Most sites don't use breadcrumbs, so they don't see this report. If you do use them (e-commerce, large content sites), it's worth checking. Breadcrumb errors are easy to fix and uncommon, but when they happen, they break search appearance.
Common Breadcrumb Errors
Error: "Missing required field 'position'"
What it is: Your breadcrumb schema is missing position numbers.
Why it matters: Google needs to know the order of breadcrumbs.
How to fix: Add "position": 1 (or 2, 3, etc.) to each breadcrumb item.
{
"@type": "ListItem",
"position": 1, // <-- Add this
"name": "Home",
"item": "https://example.com"
}
Error: "Invalid value for property 'item'"
What it is: The URL in the breadcrumb doesn't exist or is malformed.
Why it matters: Google tries to visit the URL and it either 404s or doesn't match the breadcrumb.
How to fix: Check that the URL in "item" is correct and working.
// WRONG: URL doesn't exist
"item": "https://example.com/poroducts" // Typo
// RIGHT: URL is correct
"item": "https://example.com/products"
Error: "Missing required field 'name'"
What it is: Your breadcrumb doesn't have a name (the text shown).
Why it matters: Google doesn't know what to display.
How to fix: Add a "name" field.
{
"@type": "ListItem",
"position": 1,
"name": "Home", // <-- Add this
"item": "https://example.com"
}
Warning: "Missing field 'item'"
What it is: A breadcrumb doesn't have an associated URL.
Why it matters: It still displays, but Google can't link to it.
How to fix: Add an "item" URL, even if it's not a real page.
Adding Breadcrumbs to Your Site
If you don't have breadcrumbs and want them:
Option 1: WordPress Plugin
Using Yoast SEO:
- Install Yoast SEO
- Go to Appearance β Menus
- Enable "Breadcrumbs" (or similar setting)
- Yoast will add the schema automatically
Using Rank Math:
- Install Rank Math
- Go to Rank Math β Breadcrumbs
- Enable breadcrumbs for your site structure
- Schema is added automatically
Option 2: Manual Schema (Developer Work)
Add the JSON-LD schema from the error section above to your page's <head> or <body>.
Wrap it in:
<script type="application/ld+json">
[Your JSON schema here]
</script>
Option 3: Use Breadcrumb Navigation
Your site should display visual breadcrumbs (the clickable navigation path at the top or side of the page). Then add the schema markup to match those.
Visual breadcrumbs alone aren't enoughβGoogle needs the schema.
When Do Breadcrumbs Matter?
Breadcrumbs help most on:
- E-commerce sites (Product > Category > Subcategory > Item)
- Content sites with deep hierarchies (Home > Blog > Category > Post)
- Directory or database sites (Home > Location > Company > Page)
They're less useful on:
- Simple blogs with few categories
- Landing pages with no hierarchy
- Single-page applications with dynamic navigation
If your site doesn't have a clear hierarchy, breadcrumbs aren't necessary.
Testing Your Breadcrumbs
Before deploying breadcrumbs:
- Go to Google's Rich Results Test
- Paste your page URL
- Look for "Breadcrumb" in the results
- See if Google recognizes them
If you see "Valid" and a preview of your breadcrumbs, you're good.
If you see errors, fix them before deploying.
Do Breadcrumbs Affect Rankings?
Indirectly. Breadcrumbs don't directly affect ranking. But they:
- Improve CTR: Better-looking search results get more clicks
- Improve UX: Users understand site structure
- Validate markup: Shows Google you're using structured data correctly
Better CTR from breadcrumbs can help ranking, but it's indirect.
Frequently Asked Questions
Q: Do I need breadcrumbs? A: Only if your site has a clear hierarchy (categories, subcategories). Simple blogs usually don't need them.
Q: Do breadcrumbs appear in every search result? A: No. Google decides when to show them. But if your markup is valid, you're eligible.
Q: Can I have breadcrumbs without displaying them on the page? A: Yes. You can add schema breadcrumbs without showing visual breadcrumbs. But it's better to show bothβusers benefit from seeing them.
Q: What if my breadcrumb path is wrong? A: Google won't show it. Make sure the path matches your site structure (Home > Category > Product).
Q: Do breadcrumbs help with internal linking? A: Not directly. But if users click breadcrumbs in search results, they're following your internal links, which helps crawlability.
Next Steps
If you have breadcrumbs on your site, check the Breadcrumbs report in GSC. If you see errors, fix them using the guidelines above.
If you don't have breadcrumbs but want them (especially for e-commerce), add them using a plugin or manual schema.
Emily Redmond is a data analyst at Emilytics β the AI analytics agent that watches your GA4, Search Console, and Bing data around the clock. 8 years of experience. Say hi β