Docs menu

Content & Metadata Checks

This dimension answers: once an agent has the page, can it actually summarize and cite it?Strong content metadata is the difference between being quoted by ChatGPT and being skipped.

C1

Page title & meta description

weight 5

Lengths that LLMs and search engines prefer:

FieldMinIdealMax
Title30 chars50–6070
Meta description80 chars140–160170

How to fix

html
<title>Pricing — AI Grader by Magnetic WP</title> <meta name="description" content="Lifetime access for $19. Unlimited AI visibility scans and monitoring." />
C2

Open Graph & Twitter cards

weight 4

OG tags drive every social and AI share preview. We require og:title, og:description, og:image, and at minimum twitter:card.

How to fix

html
<meta property="og:title" content="Pricing — AI Grader by Magnetic WP" /> <meta property="og:description" content="Lifetime access for $19." /> <meta property="og:image" content="https://magneticwp.com/og.jpg" /> <meta name="twitter:card" content="summary_large_image" />
C3

JSON-LD structured data

weight 8

The single biggest lever for AI agents. Emit one JSON-LD block per page type — Article, Product, Organization, BreadcrumbList. Yoast and Rank Math handle most of this automatically.

How to fix

json
{ "@context": "https://schema.org", "@type": "Article", "headline": "Your headline", "author": { "@type": "Person", "name": "Jane Doe" }, "datePublished": "2026-06-25", "image": "https://yoursite.com/cover.jpg" }
C4

Semantic HTML landmarks

weight 3

Agents use landmarks to skip nav and footer chrome and lock onto the main article. We require at least <main> plus one of <article> or <section>.

C5

Image alt text coverage

weight 2

We sample up to 30 images per page. ≥90% with non-empty alt attributes earns full credit; decorative images should use alt="" explicitly.