Add disclaimers to sensitive content
Checks for appropriate disclaimers on sensitive content types such as medical, legal, financial, and affiliate pages
- YMYL pages (medical, legal, financial, safety topics) require visible, accurate disclaimers to demonstrate trustworthiness
- Google's quality raters assess E-E-A-T; missing disclaimers on sensitive topics signal low trust
- Disclaimers must be accurate and specific — generic 'consult a professional' text with no context is insufficient
Rule Details
Sensitive content — medical advice, financial guidance, legal information, affiliate recommendations — requires clear disclaimers. Google's Quality Rater Guidelines (opens in new tab) and page-level YMYL detection both treat these disclaimers as trust signals, not just legal boilerplate.
Code Examples
❌ Avoid — sensitive content with no disclaimer
<article>
<h1>How to Lower Blood Pressure Naturally</h1>
<p>Reducing sodium intake to under 1,500mg per day can significantly
lower systolic blood pressure...</p>
<!-- No medical disclaimer anywhere on the page -->
</article>✅ Correct — prominent disclaimer before sensitive content
<article>
<aside class="disclaimer" role="note">
<strong>Medical Disclaimer:</strong> This content is for informational
purposes only and does not constitute medical advice. Always consult a
qualified healthcare professional before making health-related decisions.
</aside>
<h1>How to Lower Blood Pressure Naturally</h1>
<p>Reducing sodium intake to under 1,500mg per day can significantly
lower systolic blood pressure...</p>
</article>✅ Affiliate disclosure before first affiliate link
<article>
<p class="affiliate-disclosure">
<em>Disclosure: This post contains affiliate links. If you purchase
through these links, we earn a small commission at no extra cost to you.
<a href="/affiliate-policy">Read our full affiliate policy.</a></em>
</p>
<h1>Best Project Management Tools in 2024</h1>
<p>We recommend <a href="https://example.com/?ref=affiliate">ToolName</a>
for its ease of use...</p>
</article>Why It Matters
- E-E-A-T Trustworthiness: Google's quality raters mark pages without appropriate disclaimers as untrustworthy, which suppresses rankings for YMYL topics.
- Legal compliance: FTC rules (US), ASA guidelines (UK), and GDPR (EU) require specific disclosures for affiliate content, advertising, and data collection, which is why FTC disclosure guidance (opens in new tab) should inform affiliate and sponsored pages.
- User trust: Readers make better decisions when they understand the nature of the content they are reading.
Content Types Requiring Disclaimers
| Content Type | Required Disclaimer |
|---|---|
| Medical / health | Not a substitute for professional medical advice |
| Financial | Not financial advice; past performance caveat |
| Legal | General information only; not legal advice |
| Affiliate / sponsored | Affiliate relationship disclosure |
| AI-generated | Content was AI-assisted/generated |
Placement Guidelines
- Place disclaimers before the relevant content — not in footers after users have already read the advice.
- Use a visually distinct style (box, background colour, italic) so disclaimers are not missed.
- Link to a fuller policy page when a brief inline disclaimer is insufficient.
- Do not bury disclaimers in 8pt font or collapse them behind a "Read more" toggle.
Exceptions
- Necessary utility or compliance pages can be intentionally brief and should not be judged by the same editorial-depth expectations as ranking-focused content.
- AI-assisted drafting is not a failure by itself; flag unsupported claims, missing editorial review, or low-originality output instead.
- When a page has both trust-signal issues and crawl/index problems, make the page eligible to rank first and then improve the content quality signals.
Standards
- Use these references as the standard for the final search-facing HTML, metadata, and crawl behavior.
- Check the implementation against Google Search Quality Rater Guidelines before treating the rule as satisfied.
- Check the implementation against FTC: .com Disclosures — How to Make Effective Disclosures in Digital Advertising before treating the rule as satisfied.
Verification
Automated Checks
- Inspect rendered HTML and HTTP headers to confirm the expected metadata or crawlability signal is present.
- Test the affected URL with Google Search Console or equivalent tooling where relevant.
- Re-crawl a representative page set after deployment.
Manual Checks
- Confirm the change does not create conflicting canonical-url, robots, or structured-data signals.
Use with AI
Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.
Check
Verify implementation
Identify pages covering medical, legal, financial, safety, or affiliate content. For each, check: (1) Is there a visible disclaimer stating the content does not constitute professional advice? (2) For affiliate content, is there an FTC-compliant disclosure before the first affiliate link? (3) Is the disclaimer placed prominently — not hidden in footers or after lengthy content?
Fix
Auto-fix issues
1. Identify pages in YMYL categories (health, law, finance, safety) and affiliate pages. 2. Add a disclaimer block near the top of the content, before readers engage with the sensitive material. 3. For medical content: "This content is for informational purposes only and does not constitute medical advice. Consult a qualified healthcare professional before making health decisions." 4. For financial content: "This article is for educational purposes only and is not financial advice. Past performance is not indicative of future results." 5. For legal content: "This information is general in nature and not legal advice. Consult a licensed attorney for advice specific to your situation." 6. For affiliate content: "This post contains affiliate links. We may earn a commission if you purchase through these links at no extra cost to you." 7. Mark the disclaimer with an appropriate ARIA role or visually distinctive style so users can identify it.
Explain
Learn more
Google evaluates YMYL pages under its E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) framework. Missing disclaimers on sensitive topics reduce the Trustworthiness score, which quality raters assign and which influences how Google ranks those pages. Disclaimers also reduce legal risk and meet regulatory requirements (FTC in the US, ASA in the UK for affiliates).
Review
Code review
Scan page content for YMYL topic keywords (medical symptoms, drug names, investment advice, legal rights, etc.). If found, check for a disclaimer element near the top of `<main>` or `<article>`. Verify affiliate pages include FTC-compliant disclosure text before the first `<a>` with a referral parameter or affiliate domain.
