All fix guides
NoticeE-E-A-T & Authority

How to Fix "No Outbound Citations" (E-E-A-T)

The "no outbound citations" notice means your page makes claims but links to zero external, authoritative sources. Adding a few relevant links to primary sources (studies, official docs, standards bodies, original data) strengthens your E-E-A-T signals, lets readers verify claims, and helps AI answer engines treat your page as a well-sourced reference worth quoting.

What this means

This check looks at whether your page links out to any external, credible sources to back up its claims, and found none. Outbound citations are links from your content to other domains you reference: a linked study, an official specification, a manufacturer's spec sheet, a government dataset, or a primary source you quote.

This is a "notice" severity, not an error. A single page with no outbound links is not penalized on its own. But for content that makes factual claims, comparisons, or recommendations, a complete absence of external references is a weak trust signal. It suggests the content is either unsupported opinion or an island that expects readers to take every statement on faith.

Note the distinction. Outbound citations are external links to other sites. That is different from internal links (to your own pages) and from inbound links or backlinks (links pointing to you). This issue is specifically about referencing outside authorities.

Why it matters

Google's Search Quality Rater Guidelines lean heavily on E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness), and Trust sits at the center of that framework. One way raters and Google's systems judge trust is whether claims are supported. Content that cites reputable primary sources reads as more accountable and better researched. This matters most for YMYL topics (health, finance, legal, safety), where unsupported claims are actively risky.

Outbound citations also let readers verify what you wrote, which builds the kind of reputation that earns backlinks and brand mentions over time. A well-sourced page is one other writers are comfortable linking to.

The answer-engine angle is sharper. ChatGPT, Perplexity, and Google AI Overviews synthesize answers and attribute their sources, and Perplexity surfaces the sources behind every response. When your page clearly ties facts to primary sources, it looks like the grounded, verifiable content these systems prefer to quote, and it models the citation behavior they reward. A page of naked assertions with no sourcing is easier for an AI system to skip in favor of one that shows its work.

Keep this in perspective. Outbound links are not a ranking lever, and stuffing dozens of irrelevant external links will not help and can look manipulative. The goal is a few genuinely useful, relevant citations, not link volume.

How to fix it

  1. 1

    Identify the claims that need a source

    Read through the page and flag every factual claim, statistic, comparison, or strong recommendation. Anything a skeptical reader might reasonably ask "says who?" about is a citation candidate. Statistics, dates, technical specifications, quotes, definitions of standards, and research findings are the highest priority. Your own opinions and first-hand experience do not need external sourcing. First-hand experience is its own E-E-A-T strength.

  2. 2

    Link to primary, authoritative sources

    Cite the original source, not a blog that summarized it. For a statistic, link the study or dataset itself. For a standard, link the spec (W3C, IETF RFC, ISO, MDN). For product facts, link the manufacturer's own documentation. Prefer institutional, governmental (.gov), academic (.edu), standards-body, and official-documentation domains. A handful of strong citations beats a dozen weak ones.

  3. 3

    Use descriptive anchor text on the specific claim

    Put the link on the words that reference the claim, not on a bare "click here" or a dumped URL. Descriptive anchor text tells both readers and crawlers what is on the other end. Anchor the link to the source's name or the concept, for example "according to the W3C Web Content Accessibility Guidelines." This also helps accessibility and reinforces topical relevance.

  4. 4

    Set link attributes and target correctly

    For an ordinary editorial citation you trust and chose, use a plain link. No rel="nofollow" is needed, and passing a little link equity to a source you are vouching for is fine. Add rel="nofollow", rel="ugc", or rel="sponsored" only when the link is untrusted, user-generated, or paid. If you open citations in a new tab with target="_blank", pair it with rel="noopener" to close the window.opener security hole. Most modern browsers now imply noopener for target="_blank", but adding it explicitly is still safest.

  5. 5

    Keep citations current and unbroken

    Dead outbound links hurt more than they help, so confirm every source resolves with a 200 status, not a 404 or a long redirect chain. When a study or spec has multiple versions, link the specific version you are referencing. Re-audit older articles periodically, since sources move and get taken down. If a good primary source goes dead, replace it or point to an archived copy rather than leaving a broken reference.

  6. 6

    Verify in the rendered HTML and re-run the audit

    After adding citations, view the rendered page and confirm the external links appear in the HTML, not injected only by client-side JavaScript a crawler might not execute. Then re-run the audit on this URL. The "no outbound citations" notice should clear once the page contains at least one credible external reference. Do a quick pass to make sure you did not over-link or turn the article into a wall of blue text.

Example

<!-- Editorial citation you're vouching for: plain link, descriptive anchor -->
<p>
  Interaction to Next Paint (INP) should be at or under 200 ms for a
  "good" rating, according to the
  <a href="https://web.dev/articles/inp">web.dev INP guidance</a>.
</p>

<!-- Citation opening in a new tab: pair target="_blank" with rel="noopener" -->
<p>
  The requirements are defined in the
  <a href="https://www.w3.org/TR/WCAG22/"
     target="_blank" rel="noopener">
    W3C Web Content Accessibility Guidelines (WCAG) 2.2
  </a>.
</p>

<!-- Only for sources you do NOT want to endorse (UGC, paid, untrusted): -->
<a href="https://example.com/sponsored" rel="nofollow sponsored">
  sponsored reference
</a>

An inline outbound citation with descriptive anchor text and safe link attributes. The first is a standard editorial citation; the second shows the correct pattern for opening in a new tab.

Platform-specific steps

WordPress (Gutenberg / Classic)

Select the text you want to turn into a citation, press Ctrl/Cmd+K (or click the link button), and paste the source URL. To open in a new tab, toggle "Open in new tab"; modern WordPress adds rel="noopener" automatically, so you do not need to hand-edit the HTML. Avoid pasting bare URLs on their own line, which auto-embed. Link real anchor text instead.

Yoast / Rank Math SEO

Neither plugin adds citations for you; this is an editorial task, not a settings toggle. Both surface an outbound-link count in their content analysis, and Yoast will nudge you when a post has no external links. Use these as a reminder to add sources, not as a judge of citation quality, which is on you.

Shopify

In the blog post or page editor, highlight your anchor text in the rich-text toolbar, click the link icon, and enter the URL. Use "Open this link in a new window" for external sources if you prefer; Shopify handles the rel attributes. For theme or template content, edit the Liquid file and add a standard <a> tag with descriptive anchor text.

Wix / Squarespace

Both use inline link editors: select the text, click the link control, and paste the source URL. Squarespace exposes an "Open in New Window" toggle in the link dialog. Neither surfaces rel attributes in the standard editor, but both apply safe defaults for new-tab links. Add citations in body content rather than in buttons so crawlers read them as editorial links.

Raw HTML / Next.js / React

Use a normal <a href> for external citations. Do not route them through the Next.js <Link> component, which is for internal client-side navigation. Always include rel="noopener" when using target="_blank". If your content renders client-side, make sure citation links exist in the server-rendered HTML (SSR or SSG) so crawlers and AI fetchers that do not run JavaScript can still see them.

Free tool
Check this with the AI Visibility Checker

Frequently asked

Do outbound links hurt my SEO by "leaking" link equity?

No, not in any practical sense for a normal page. Linking to a few relevant, authoritative sources is a positive trust signal and standard editorial practice. The old fear of PageRank "leaking" leads people to nofollow everything, which is counterproductive. Reserve nofollow for paid, user-generated, or untrusted links, and let genuine editorial citations pass normally.

How many outbound citations should a page have?

There is no fixed number, and this is not about hitting a quota. Cite as many sources as the content genuinely relies on, which is often just a few per article. A page with three strong primary-source citations beats one padded with fifteen weak or irrelevant links. Over-linking looks spammy and dilutes the signal.

Should outbound citation links use nofollow?

Generally no. For an editorial source you chose and trust, use a plain followed link, since you are vouching for it. Use rel="nofollow" only when you cannot endorse the destination, rel="sponsored" for paid links, and rel="ugc" for user-generated content. Blanket-nofollowing every external link throws away a legitimate trust signal.

Do outbound citations help with AI Overviews, ChatGPT, and Perplexity?

Indirectly, yes. AI answer engines favor content that is grounded and verifiable, and citing primary sources signals exactly that. Perplexity and Google AI Overviews surface sources, so well-sourced pages fit the pattern they are built to reward. It will not single-handedly get you cited, but it makes your content look like the accountable reference these systems prefer to quote.

Is it better to link to a study or a page that summarizes it?

Link the primary source: the study, dataset, spec, or official documentation itself. Citing a secondhand summary weakens your credibility and passes trust to a middleman rather than the authority. If the original is paywalled or hard to read, you can link both, but the primary source should be the anchor of your citation.

Does your site have this issue?

Run a free, AI-powered audit and we’ll flag this and 150+ other checks in about a minute. No signup.

No signup needed. Results in under 60 seconds.

Related fixes