We respect your privacy.

We use strictly necessary cookies to keep you signed in and to protect against CSRF. With your permission we also use a small amount of first-party analytics to improve the product. We do not sell your data and we do not use third-party advertising trackers. See our cookie policy and privacy policy .

← All learn topics

Rule page.opengraph.title-missing

Add an og:title for shared-link previews

page.opengraph.title-missing is a check in Crawlmind's site audit that grades low-impact issues of this kind. This page explains why the rule matters and the exact fix.

Impact: lowEffort: low

Why it matters

The `og:title` is the headline that renders in a shared-link preview card. Without it, social apps and AI assistants fall back to the raw `<title>`, which is usually optimised for search (keyword-first, brand-suffixed, often truncated) rather than for a human glancing at a shared card. A dedicated og:title lets you write a cleaner, click-worthy headline.

The fix

Add to the page `<head>`:

```html
<meta property="og:title" content="A clear, human headline for this page" />
<meta property="og:description" content="One sentence that makes someone want to click." />
```

Keep og:title under ~60 characters so it does not truncate in the card. It can — and often should — differ from the SEO `<title>`.

References