SEO6 min read

How to Fix a Missing Meta Description (and Why It Matters)

A missing meta description doesn't tank rankings directly — but it silently kills click-through rates. Here's exactly what it is, how to write a good one, and how to add it to any platform.

What Is a Meta Description?

A meta description is an HTML tag that provides a brief summary of a web page's content. It typically appears as the grey text beneath the blue link in Google search results.

The tag lives in your page's <head> section and looks like this:

<meta name="description" content="Your description here." />

When your page doesn't have a meta description, Google automatically generates one from your page content. This auto-generated snippet is usually less compelling than a hand-crafted one — often pulling random text from the middle of the page.

SERP preview

https://yoursite.com/page
Your Page Title — Brand Name
This is your meta description. It appears here in search results and is your best opportunity to convince the user to click your link instead of the competition's.

Why This Matters for Google

Meta descriptions are not a direct ranking factor — Google confirmed this years ago. But they affect rankings indirectly through click-through rate (CTR).

When searchers see your page in results, the description is what convinces them to click. A generic auto-generated snippet ("The company was founded in 2020 and offers a range of services…") gets far fewer clicks than a specific, benefit-focused description.

Lower CTR for your ranking position is a signal to Google that your page is less relevant than expected — which can lead to ranking drops over time. Higher CTR signals the opposite.

Meta descriptions are also used verbatim in social media previews (LinkedIn, Slack, iMessage) when your pages are shared — making them important even beyond search.

How to Write a Great Meta Description

The formula

[What the page does] + [primary benefit] + [action or differentiator]. [Max 160 chars]

Rules

  • 140–160 charactersLonger gets truncated
  • Include target keywordGoogle bolds matching terms
  • Use active voice'Scan your site' not 'Your site can be scanned'
  • End with a call to actionTry, Check, Learn, Get, Download
  • Unique per pageNever duplicate across pages

Examples

Bad (generic)

We offer website audit services to help improve your online presence and performance.

Good (specific + benefit + CTA)

Scan your website for SEO issues in under 30 seconds. Check meta tags, headings, and canonical URLs. Free, no signup needed.

Good (for a product page)

Project management software for remote teams. Real-time task boards, time tracking, and client portals. Try free for 14 days.

How to Add a Meta Description

WordPressUsing Yoast SEO or Rank Math

Install Yoast SEO or Rank Math (both free). Open any post or page, scroll to the SEO meta box at the bottom, and find the "Meta description" field. Both plugins show a character count and a live SERP preview. Set it and publish — done.
If you don't see the SEO meta box: go to Screen Options (top-right) and enable it.

Next.jsApp Router (Next.js 13+)

Export a metadata object from your page.tsx:
import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Your Page Title",
  description: "Your meta description (140–160 chars).",
  alternates: {
    canonical: "https://yoursite.com/page",
  },
};

Plain HTMLStatic sites, custom builds

Add the following inside your <head> tag:
<head>
  <title>Your Page Title</title>
  <meta name="description" content="Your description here." />
  <link rel="canonical" href="https://yoursite.com/page" />
</head>

Frequently Asked Questions

Does a missing meta description hurt SEO rankings?+
Not directly. Meta descriptions are not a confirmed Google ranking factor. However, when they're missing, Google auto-generates a snippet from your page content — and these are usually worse than a hand-crafted description. A poor snippet reduces click-through rate, which is a behavior signal that can indirectly affect rankings over time.
How long should a meta description be?+
Between 140–160 characters. On desktop SERPs, Google shows roughly 155–160 characters. On mobile, it's often shorter. Write for ~150 characters to be safe. If truncated, the description cuts mid-sentence — always end with a complete thought or call to action within 155 characters.
Will Google always use my meta description?+
No. Google rewrites meta descriptions approximately 60–70% of the time, especially for long-tail queries where your description doesn't closely match the search intent. However, writing a good description still matters — it serves as a default for branded searches and social media previews.
Can I use the same meta description on multiple pages?+
Technically yes, but you shouldn't. Duplicate meta descriptions are a missed opportunity — each page should target a different keyword and user intent. Google Search Console flags duplicate descriptions as an issue.

Check if your pages have meta descriptions

AuditAI scans every meta tag on your page and flags missing or too-short descriptions instantly.

Check My Meta Tags →