What This Means

More than one <title> element was found in the parsed document — whether multiple tags inside <head>, or one in <head> and another in the body.

Why It Matters for SEO

Browsers render the first <title> they encounter. Search engine parsers behave similarly, but their handling of multiple titles varies — some crawlers take the first, others attempt to merge content, and a few may treat the conflict as a signal of low-quality markup. The practical outcome is that you lose control of which title is used, which can result in an unintended or inferior title appearing in search results.

Multiple title tags are almost always caused by a CMS plugin conflict, a theme component, or a migration that left a legacy title injector in place. They are preventable.

What the Platform Checks

After fetching and parsing the full HTML, the platform counts all <title> elements in the document regardless of their position (inside or outside <head>). This check fires when the count is greater than 1.

How to Fix It

Identify every component responsible for outputting a <title> tag and disable all but one. Common sources of the duplicate:

  • SEO plugins (Yoast, Rank Math, AIOSEO) combined with a theme that also outputs a title.
  • Page builders injecting their own title tag alongside the CMS template.
  • Legacy includes from a previous CMS or template system left in place after migration.
  • Manual HTML in a custom header template that duplicates the CMS-managed title.

After identifying the source, remove or disable the duplicate. Verify with your browser's View Source — only one <title> tag should appear.

See every duplicate titleflagged in the dashboard

Run a full audit to find every page with multiple title tags and trace the conflict to its source.