What This Means

More than one <meta name="description"> tag was found inside the page's <head> element. Each tag carries a different content value, creating an ambiguous situation for both search engines and the platform's parser.

This is almost always the result of a template conflict rather than intentional markup — for example, a theme outputting one description and an SEO plugin outputting another, or a partial being included more than once.

Why It Matters for SEO

Search engines process only one meta description per page. When multiple tags are present, behavior varies by engine: Google typically uses the last tag encountered in document order; other engines may use the first, or ignore all of them entirely. In either case, the description that gets used may not be the one you intended.

The deeper problem is diagnostic. Multiple tags indicate that your templating or plugin stack is producing conflicting output — which means you may not have reliable control over any page's description. Fixing the root cause (rather than just the symptom) prevents the same conflict from affecting other pages.

What the Platform Checks

During each crawl the platform counts the number of <meta name="description"> elements found anywhere in the document. This check fires when the count is greater than one, regardless of whether the tags are inside or outside <head>. Severity is Warning — the page is indexable but snippet control is unreliable.

How to Fix It

Identify every source that could be rendering a description tag for the page. Common culprits:

  • Theme header templates — Many themes include a <meta name="description"> in their default header.php or equivalent, which conflicts with SEO plugin output.
  • Multiple active SEO plugins — Running Yoast SEO alongside another metadata plugin (e.g. All in One SEO, Rank Math) often results in both outputting their own description tags.
  • Page builders or blocks — Some page builder plugins inject head tags independently of the theme.
  • Custom code snippets — Manual additions to functions.php or via a snippet plugin can duplicate output already provided by an SEO plugin.

Once you have identified all sources, disable or remove the duplicate output so only one authoritative tag remains per page. Verify by viewing source on a few pages after the fix.

Find every conflictacross your entire site

Run a full technical audit and see every page with multiple meta description tags, with affected URLs listed in the dashboard.