
What "multiple title tags" means
This check fires when a page's <head> contains more than one <title> element. The stakes are higher than with a duplicate description: the title is one of the strongest on-page relevance signals and it's what shows up as the blue clickable line in the SERP, so letting two of them fight means gambling your most valuable piece of head markup.
HTML allows exactly one title per document. Browsers cope by using the first and ignoring the rest, but crawlers aren't bound to that behavior, and a second <title> is often a symptom of a broken <head> that's causing other tags to drop too.
A real example: two titles in one head
Here's the failing markup — a hard-coded template title plus a plugin-generated one:
<head>
<!-- hard-coded in the layout -->
<title>Acme</title>
<meta charset="utf-8">
...
<!-- added by the SEO plugin -->
<title>Cast Iron Skillets – Buy Pre-Seasoned Cookware | Acme</title>
</head>Most browsers display "Acme" in the tab (the first one), which is the opposite of what you wanted to rank. Corrected, there's a single, deliberate title:
<head>
<meta charset="utf-8">
<title>Cast Iron Skillets – Buy Pre-Seasoned Cookware | Acme</title>
</head>Why two titles — and how bad each variant is
| Variant | How it happens | Severity |
|---|---|---|
| Theme title + plugin title | Theme header.php prints <title> and the SEO plugin adds its own | High — browsers show the theme's weak title; remove the theme's |
| Two SEO plugins | Both active, each outputting a title | High — deactivate one immediately |
Title inside <body> or wrong place | An SVG or template fragment carries a stray <title> | Medium — scope it; an SVG <title> is fine inside the SVG but not loose in the head |
| Invalid element breaking the head | A malformed tag closes <head> early, so a later title lands oddly | High — often drops other meta too; fix the invalid element |
| Cached + fresh title stacked | A stale page cache injects an old title alongside the new render | Low/Medium — purge the cache and recheck |
Why the browser tab lies to you
A trap worth naming: your browser tab shows the first <title> in the head, per the HTML spec's error-recovery rules, so if the theme's weak title comes first, that's what you see — and you might "fix" your good plugin title thinking it never applied, when the real problem is the extra tag above it. Search engines don't promise to follow that same first-wins recovery, so what you see in the tab is not a reliable guide to what Google indexed. Always count the title tags in source rather than trusting the tab, and remove the duplicate rather than rewriting the survivor.
How to detect it on your own site
- curl and count:
curl -s https://yourpage/ | grep -c '<title'. More than1in the<head>is your flag (mind stray SVG titles). - Screaming Frog: crawl, open the Page Titles tab, and apply the Multiple filter to list every URL with more than one title.
- View source: Ctrl-F for
<titleinview-source:; the match count is immediate. - GSC URL Inspection: View crawled page shows the fetched HTML — search it for a second title element.
- Devtools console:
document.querySelectorAll('head title').lengthreturns how many titles are in the head of the rendered DOM.
How to fix it
- Pick the single system that should own the title — typically your SEO plugin or framework head manager.
- Remove every other title emitter: the theme's hard-coded
<title>, a second plugin, or a stray template fragment. - If an invalid element is breaking the head, fix that first — it's frequently the real cause and it drops other tags too. See Head Contains Invalid Elements.
- Purge any page cache so you're testing fresh output, then re-run
grep -c '<title'until it returns1. - Re-crawl and confirm the Screaming Frog "multiple" filter is empty.
Treat this one as higher priority than a duplicate description. A wrong title in the SERP tanks click-through directly, and a duplicated title often signals a structurally broken head that's quietly costing you canonical, hreflang, or Open Graph tags too.
FAQ
Which title does Google use when there are two?
Google isn't guaranteed to follow the browser's "first one wins" rule and may choose either, or rewrite the title entirely. Since the outcome isn't dependable, ship exactly one so there's nothing to guess.
Is a second title a ranking penalty?
Not a formal penalty, but the title is a real ranking and click-through signal, so a muddled or wrong title in the SERP costs you traffic. It also often points to a broken head that harms other tags.
Are SVG <title> elements a problem?
Not inside the SVG — that's the accessible label for the graphic and it's valid there. It's only a problem if a title ends up loose in the document <head>. Count titles in the head specifically, not everywhere on the page.
Why did my other meta tags disappear too?
A malformed element can close the <head> early, stranding later tags and producing a second title in a weird spot. Fixing the invalid element usually restores the dropped meta as well.
How does this compare to multiple meta descriptions?
Same root cause — two systems writing the same head element — but titles carry more weight and more SERP visibility, so prioritize them. Then clear duplicate descriptions too: Multiple Meta Descriptions.
Related: Title Tag Is Empty, Title Tag (glossary), and Title Tags and Meta Descriptions: The Complete Guide.
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.







