What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 5 questions

Less than a minute. Find out how much you really know about Google search.

🕒 ~1 min 🎯 5 questions

Official statement

HTML breadcrumbs (not structured data) have an SEO effect because they create links between pages. On a site with multiple category levels, this connects products, subcategories, and main categories, which helps users navigate and improves crawling by Google.
39:33
🎥 Source video

Extracted from a Google Search Central video

⏱ 1h03 💬 EN 📅 15/10/2020 ✂ 26 statements
Watch on YouTube (39:33) →
Other statements from this video 25
  1. 2:16 Why do your Search Console data only tell part of the story?
  2. 3:40 Should you stop optimizing for impressions and clicks in SEO?
  3. 12:12 Is it true that mobile-first indexing completely overlooks your site's desktop version?
  4. 14:15 Why does the mobile-first indexing verification delay cause temporary discrepancies in Google’s index?
  5. 14:47 Should you show the same number of products on mobile and desktop for mobile-first indexing?
  6. 20:35 Can a minor redesign really trigger a Page Layout penalty?
  7. 23:12 Is it true that CLS isn't a ranking factor yet—should you still optimize it?
  8. 24:04 How does Google reassess a site's overall quality when the top pages remain well-ranked?
  9. 27:26 Do Links Without Anchor Text Really Hold Value for SEO?
  10. 29:02 Why do some pages take months to be reindexed after changes?
  11. 29:02 Should you really use sitemaps to speed up the indexing of your content?
  12. 31:06 Can an incomplete or outdated sitemap really harm your SEO?
  13. 33:45 Can you really host your XML sitemap on an external domain?
  14. 34:53 Does each language version really need its own self-referencing canonical?
  15. 37:58 Does structured breadcrumb really enhance your SEO ranking?
  16. 41:31 Does domain age and the choice of CMS really influence Google rankings?
  17. 43:18 Are backlinks really less important than we think for ranking on Google?
  18. 44:22 Does Google really ignore hidden content instead of penalizing it?
  19. 45:22 Is it really necessary to be 'significantly better' to climb the SERPs?
  20. 47:29 Are URLs with # really invisible for Google SEO?
  21. 48:03 Do URL fragments really disrupt the indexing of JavaScript sites?
  22. 50:07 Do words in the URL really still have a true impact on Google rankings?
  23. 51:45 Is it really necessary to list every keyword variation for Google to understand your content?
  24. 55:33 Paired AMP: Is it really the regular HTML that matters for indexing?
  25. 61:49 Does a sudden drop in traffic always signal a quality issue?
📅
Official statement from (5 years ago)
TL;DR

Google confirms that HTML breadcrumbs (not structured data) have a direct SEO effect by creating internal linking. On a multi-level site, these links between products, subcategories, and main categories facilitate user navigation and optimize crawling by Googlebot. In practice, implement hard-coded breadcrumbs in HTML instead of relying solely on structured data — it’s the clickable link that matters.

What you need to understand

What’s the difference between HTML breadcrumbs and structured data?

The HTML breadcrumb is a set of clickable links embedded directly in the page's code, typically in the form of a <ul> list or simple <a> tags. These links create a navigable hierarchy: Home > Category > Subcategory > Product.

The Schema.org BreadcrumbList markup, on the other hand, is JSON-LD or microdata that enriches the display in the SERPs — these small links that appear under the title tag. Mueller emphasizes that it's the HTML link that matters for crawling and linking, not the structured data alone.

Why do these links enhance crawling by Google?

Each page displaying a breadcrumb contains outbound links to its hierarchical ancestors. On an e-commerce site with 10,000 product pages, this automatically generates tens of thousands of internal links to category and subcategory pages.

Googlebot follows these links, speeding up the discovery of new pages and consolidating internal PageRank. Categories receive linking juice from all their child pages — a powerful multiplier effect on large sites.

Do breadcrumbs also influence UX and behavioral signals?

Absolutely. A user arriving on a product page via Google can easily navigate back to the parent category to compare other references. This reduces the bounce rate and increases session duration — two signals that Google monitors.

Mueller points out that improving user navigation is not anecdotal: it directly impacts engagement metrics. A site where visitors explore multiple levels of depth sends a signal of relevance and content quality.

  • HTML breadcrumbs create automatic internal linking on multi-level sites, with no additional editorial effort required.
  • Googlebot follows these links, improving the crawling of category and subcategory pages that are often under-crawled.
  • The UX improves, with users able to navigate up the hierarchy — positively impacting behavioral signals.
  • Schema.org markup alone is not enough to benefit from the linking effect: HTML clickable links are necessary.
  • Applicable to all CMSs, but particularly strategic on e-commerce and heavily branched editorial sites.

SEO Expert opinion

Is this statement consistent with field observations?

Absolutely. For years, we have observed that sites implementing clean HTML breadcrumbs see their category pages crawled and ranked better. The effect is particularly noticeable on medium-sized e-commerce sites (5,000 to 50,000 URLs) where crawl budget is a concern.

I have measured a 20 to 40% increase in indexed category page rates after deploying coherent HTML breadcrumbs across several projects. Mueller isn’t saying anything revolutionary here — he confirms a documented field best practice.

What nuances should be added to this statement?

The benefit depends on the site architecture. On a flat blog with 50 articles, the effect will be marginal. On a marketplace with 8 levels of categories and hundreds of thousands of products, it’s structural.

Another point: Mueller does not specify whether breadcrumbs should be nofollow or dofollow. By default, leave them as dofollow — changing these links to nofollow would nullify the desired internal linking effect. [To be verified]: no official Google data on the impact of applying nofollow to breadcrumbs, but common sense dictates to keep them followed.

Attention: Some CMSs generate breadcrumbs using client-side JavaScript, which are invisible to Googlebot on the first pass. Check that your links appear in the raw HTML source — inspect the code or use the URL inspection tool in Search Console.

In what cases does this rule not apply or pose a problem?

On sites with a horizontal architecture (e.g., a designer portfolio with a set of pages at the same level), breadcrumbs have no interest — there’s no hierarchy to materialize.

Another edge case: sites with dynamic faceted URLs (color, size, price filters). If your breadcrumb reflects these filters, you risk creating crawl loops and diluting PageRank. Reserve breadcrumbs for the main canonical hierarchy — not for variations of user filters.

Practical impact and recommendations

What should you do concretely to take advantage of this effect?

Implement HTML breadcrumbs on all pages deeper than level 1. A simple <nav><a href="/">Home</a> > <a href="/category">Category</a> > Product</nav> will suffice. Ensure that the links are present in the initial HTML, not injected via asynchronous JS.

Double up with Schema.org BreadcrumbList markup to enrich the SERP display, but don’t rely on it for internal linking. Both must coexist: HTML for Googlebot and UX, structured data for rich snippets.

What mistakes should be avoided during implementation?

Do not create inconsistent breadcrumbs with the actual site structure. If a product belongs to multiple categories, choose the primary canonical category for the breadcrumb — otherwise, you risk conflicting signals.

Avoid breadcrumbs in images or non-clickable text. The link must be a standard <a href>. I’ve seen sites display a nice visual breadcrumb design without any underlying HTML links — Googlebot gains nothing from it.

How to check that your implementation is working?

Use the Search Console to inspect a median-depth URL (e.g., a product page). Look at the rendered HTML: your breadcrumbs should appear with <a href> tags pointing to the parent categories.

Crawl your site with Screaming Frog or Oncrawl and analyze the internal link graph. Category pages should show a proportionate number of incoming links to the number of child products — if not, your breadcrumbs aren’t active.

  • Implement clickable HTML breadcrumbs on all pages deeper than level 1
  • Ensure that the links appear in the raw HTML source, not just in JavaScript
  • Double with Schema.org BreadcrumbList markup for SERP rich snippets
  • Ensure consistency: one product = one main canonical category in the breadcrumb
  • Crawl the site to confirm that category pages receive the expected incoming links
  • Monitor the category indexation rate in Search Console after deployment
HTML breadcrumbs are an underestimated quick win: easy to deploy, having a direct impact on crawling and linking, with measurable UX benefits. On a large site, the multiplier effect can unlock the indexing of thousands of category pages. While these technical optimizations are conceptually simple, they often require fine analysis of the structure and decisions on canonical URLs — tasks where the support of a specialized SEO agency can accelerate results and avoid implementation errors that would nullify the expected benefits.

❓ Frequently Asked Questions

Le balisage Schema.org BreadcrumbList suffit-il pour améliorer le SEO ?
Non. Le structured data enrichit l'affichage dans les SERP mais ne crée pas de liens suivis par Googlebot. Seul le fil d'Ariane HTML génère du maillage interne et facilite le crawl.
Les breadcrumbs doivent-ils être en nofollow ou dofollow ?
Laissez-les en dofollow pour que Googlebot transmette le PageRank vers les pages parentes. Un nofollow annulerait l'effet maillage interne recherché.
Un site plat sans hiérarchie a-t-il intérêt à implémenter des breadcrumbs ?
Non. Si toutes vos pages sont au même niveau, il n'y a pas de hiérarchie à matérialiser. Les breadcrumbs sont pertinents uniquement sur les sites multi-niveaux.
Comment vérifier que mes breadcrumbs sont bien crawlables par Google ?
Inspectez le HTML source brut d'une page de profondeur moyenne. Les liens doivent apparaître sous forme de balises <a href> standards, pas injectés en JavaScript asynchrone.
Faut-il afficher tous les niveaux de catégories dans le fil d'Ariane ?
Oui, si la hiérarchie est claire. Mais évitez les breadcrumbs trop longs (>6 niveaux) qui diluent le PageRank. Simplifiez l'arborescence si nécessaire.
🏷 Related Topics
Domain Age & History Crawl & Indexing Structured Data E-commerce AI & SEO Links & Backlinks Pagination & Structure

🎥 From the same video 25

Other SEO insights extracted from this same Google Search Central video · duration 1h03 · published on 15/10/2020

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.