What This Means

No <meta name="description" content="..."> tag was found inside the page's <head> element. The page was successfully crawled and indexed, but it has no authored description for search engines to use when generating its result snippet.

Why It Matters for SEO

The meta description is the primary text search engines display beneath your page title in results. Without one, Google and other engines select their own snippet — typically pulling a fragment of body copy near the top of the page or around the first occurrence of the query term. That auto-generated text may bury your key message, omit a call to action, or simply read poorly out of context.

The description is not a direct ranking signal, but it directly affects click-through rate. A weak or irrelevant snippet reduces CTR, and sustained low CTR on a query can signal reduced relevance to search engines over time, compounding into softer rankings on competitive terms. Controlling your own snippet is the lowest-effort way to protect CTR.

What the Platform Checks

During each crawl the platform fetches the fully-rendered HTML and parses the <head> section. This check fires when either of the following is true:

  • No <meta name="description"> element exists anywhere in the document.
  • The element exists but its content attribute is present but empty.

Severity is Notice. The page is still crawlable and indexable — the impact is on snippet quality and click-through rate rather than whether the page can be discovered. Pages with a missing description are surfaced in the Meta Descriptions subcategory of the On-Page Content audit section.

How to Fix It

Add a <meta name="description" content="..."> tag inside the <head> element of the page:

<head>
  <meta charset="UTF-8">
  <title>Page Title Here</title>
  <meta name="description" content="A clear, specific description of this page
  that gives searchers a reason to click. Aim for 120–160 characters.">
</head>

Writing tips:

  • Write for the searcher first. Describe what the page contains and why it is useful — not just what it is called.
  • Front-load the key message. Put the most important information in the first 120 characters. Some search layouts show less, and content beyond ~920 rendered pixels is cut off.
  • Keep it unique per page. Shared descriptions reduce snippet distinctiveness and prompt search engines to substitute their own text. Every page should have a description that reflects its specific topic.
  • Target 120–160 characters. Short enough to avoid truncation in most layouts; long enough to give a complete, useful summary.
  • Avoid keyword stuffing. Dense keyword lists look spammy in results and reduce CTR. Write naturally.

In a CMS like WordPress, use an SEO plugin (Yoast, Rank Math, or equivalent) to set the description per post or page. For programmatically generated pages, use a template that pulls page-specific attributes — product name, category, location, or key differentiator — into the description dynamically so every page gets a unique, relevant snippet.

Find every missing descriptionacross your entire site

Run a full technical audit and get every missing meta description flagged in the dashboard with affected URLs and fix guidance.