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:
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
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 characters — Longer gets truncated
- ✓Include target keyword — Google bolds matching terms
- ✓Use active voice — 'Scan your site' not 'Your site can be scanned'
- ✓End with a call to action — Try, Check, Learn, Get, Download
- ✓Unique per page — Never duplicate across pages
Examples
Bad (generic)
Good (specific + benefit + CTA)
Good (for a product page)
How to Add a Meta Description
WordPressUsing Yoast SEO or Rank Math
Next.jsApp Router (Next.js 13+)
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
<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?+
How long should a meta description be?+
Will Google always use my meta description?+
Can I use the same meta description on multiple pages?+
Related guides
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 →