How to Add Google’s “Preferred Sources” Button to Your Website

How to Add Google’s “Preferred Sources” Button to Your Website

A Complete 2026 Guide for Publishers

What it does, why it matters, and exactly how to embed it, with code.

Example of the Add to Preferred Sources button placed on a website homepage, showing the actual Google button with its multicolor logo

AI Overviews are quietly stealing clicks that used to land on your site. Google’s answer is a button: drop it on your pages, and a reader can mark your site as a trusted source in one tap, no detour to Google’s settings required.

This guide covers what it does, whether it’s worth your five minutes, and exactly how to install it, code included.

Quick Summary

  • What it is: a button readers tap to mark your site as trusted, boosting your visibility in Top Stories, AI Overviews, and AI Mode.
  • Launched: August 20, 2026, as an embeddable upgrade to a feature that’s existed since mid-2025.
  • Setup: one script tag, one div. No redesign, no dev sprint.
  • Payoff: Google says readers are about 2x more likely to click through to a source they’ve marked preferred.
  • Scale: 600,000+ unique sources selected as of late August 2026, up from ~90,000 in December 2025.
  • Catch: it’s not a ranking factor. It builds repeat visibility with readers who already trust you.

What Is the Preferred Sources Button?

Preferred Sources is a personalization feature in Google Search. A reader can flag a specific website as one they trust, and Google uses that signal to show more of that site’s content when it’s relevant, particularly inside Top Stories, AI Overviews, and AI Mode, which happen to be the surfaces where organic clicks have taken the biggest hit from AI generated answers.

Before this button existed, adding a preferred source meant leaving whatever you were reading, opening Google’s own source preferences page, and searching for the publication by name.

Most readers never bothered to finish that. The new button collapses the whole thing into one click. A reader taps “Add to Preferred Sources” on your page, confirms in a small pop-up, and lands right back where they were reading, usually within a couple of seconds.

Diagram comparing the old multi-step flow to add a Google preferred source with the new one-tap button flow
Figure 1. The old multi-step flow compared to the new one-tap flow.

A Quick History of Preferred Sources

Preferred Sources didn’t appear overnight. It has been rolling out in stages for over a year, and the embeddable button is really the latest step in a longer push to turn it into something ordinary readers actually use, not just something that exists in a settings menu nobody visits.

Timeline of Google Preferred Sources rollout milestones from mid-2025 to August 2026
Figure 2. Key milestones in the Preferred Sources rollout.

Adoption has picked up at each stage, and it jumped noticeably once the button removed the friction of Google’s settings page:

Bar chart showing growth in unique sources selected as preferred, from 345,000 in May 2025 to over 600,000 in August 2026
Figure 3. Growth in unique sources selected as preferred, based on Google’s own reported figures.

Why Add It to Your Site?

Embedding the button costs one script tag and a few minutes of your time. Here’s what publishers stand to get back for that small effort.

Infographic summarizing four benefits of the Preferred Sources button: 2x repeat click-through, more Top Stories visibility, more AI Overviews visibility, one-tap setup
Figure 4. A summary of the main benefits Google and early adopters have reported.
  • More visibility where it counts. Preferred sources get surfaced more often in Top Stories, and since May 2026, inside AI Overviews and AI Mode answers too, two places that have otherwise been hard for publishers to influence directly.

 

  • Readers come back. Google reports that people are about twice as likely to click through to a source again once they’ve marked it as preferred, compared with sources they haven’t.

 

  • It’s a real, stated signal, not a guess. Instead of Google inferring your relationship with a reader from indirect click data, the reader is telling Google outright that they trust you. That tends to be more reliable than anything inferred.

 

  • Low effort, no redesign. The button is a drop-in script and a single div. You don’t need to touch your site’s design system or rebuild any pages to use it.

 

  • It keeps readers on your site. Because the confirmation flow drops readers back on the exact page they were on, you don’t lose the session the way the old settings-page flow used to.
Worth knowing
Preferred Sources isn’t a direct ranking factor. Adding the button won’t move your position in regular search results. Its value is in repeat visibility with readers who already know your work, especially inside AI generated answers where organic links are otherwise scarce.

Step-by-Step: How to Embed the Button

The whole implementation comes down to two pieces of code: a script that Google hosts, and a container element that tells the script where to render the button.

Step 1: Load Google’s publisher library

Add this script tag once, ideally in your page’s <head>, or wherever your site loads third-party scripts:

<script async
  src="https://news.google.com/swg/js/v1/publisher.js">
</script>

It loads asynchronously, so it won’t block the rest of your page.

Step 2: Place the button

Add this div wherever you want the button to appear. Common spots are near the byline, at the end of an article, or in the site footer:

<div google-add-preferred-source-btn></div>

The script detects that attribute automatically and renders the button in place. You don’t need to hard-code your own domain. Google reads it from the page.

Step 3 (optional): Match your site’s theme

The button defaults to a light theme. If it’s sitting on a dark background, switch it with a data attribute:

<div google-add-preferred-source-btn data-theme="dark"></div>

Step 4 (optional): No-JavaScript fallback

If your CMS doesn’t allow custom scripts, you can link readers to Google’s source preferences page instead, using a deeplink. It’s a bit clunkier since the reader still has to search for your site by name once they land there, but it works anywhere you can place a normal link, including newsletters and social posts:

<a href="[Google source-preferences deeplink for your domain]">
  Add us as a preferred source
</a>

You’ll find the exact deeplink format in Google’s Search Central documentation for this feature.

Step 5: Test it

Load the page and click the button yourself. Confirm two things: the “Add as a Preferred Source on Google” screen shows your publication correctly, and clicking “Add” sends you back to the same page you started on.

Step 6 (optional): Track clicks

If you use Google Tag Manager, its built-in listener should pick up button clicks on its own. If you’re running gtag.js without GTM, fire the event manually:

window.gtag('event', 'preferred_source_button_click');

Confirm the event fires correctly using GTM Preview mode or GA4 DebugView before you rely on it, then treat it as a normal engagement metric in your reporting.

Where to Put It (and How to Get Readers to Notice)

A button nobody sees doesn’t do much good. A few placement and promotion tips worth considering:

  • Put it somewhere readers naturally pause, like near the byline, at the end of an article, or in a persistent footer, rather than burying it in a sidebar.
  • Use it once per page. Competing calls to action tend to reduce clicks on all of them, this one included.
  • Tell your existing audience it exists. A short newsletter mention or an on-site banner for a week or two will do more than the button sitting there quietly on its own. Most readers won’t notice a new element unless you point it out.
  • Prioritize pages with returning visitors, like your homepage or most-read articles. The button is really about deepening a relationship a reader already has with you, not creating one from scratch.

A Few Things to Keep in Mind

  • It’s not a ranking factor. It changes how often you’re surfaced to people who’ve already chosen you, not your position in standard organic results.
  • It depends on existing trust. The button turns loyal readers into a stronger signal, but it doesn’t generate loyalty on its own, so it works best on sites that already have a returning audience.
  • It requires JavaScript. Use the deeplink fallback if your platform restricts custom scripts.
  • Some in the SEO industry have pointed out a bit of tension here. Google already infers a lot about reader preference from click-through behavior, so asking readers to state it outright is, in a way, formalizing something Google could partly see already. That’s a fair point, but it doesn’t really change the practical upside. A clearly stated signal is still more reliable for everyone involved than one that’s guessed at.

Frequently Asked Questions

What is Google’s Preferred Sources button?

It’s an embeddable button that publishers add to their websites so readers can mark that site as a preferred source directly from the page they’re reading, without navigating to Google’s settings.

When did the Preferred Sources button launch?

Google released the embeddable button on August 20, 2026. The underlying Preferred Sources feature has existed since mid-2025, first as a Labs experiment.

Does adding the button improve my Google rankings?

No. It doesn’t directly affect ranking in standard organic search results. It increases how often your content is shown to readers who’ve marked you as preferred, especially in Top Stories, AI Overviews, and AI Mode.

How do I add the button to my website?

Add Google’s publisher script to your page, then place a div with the google-add-preferred-source-btn attribute wherever you want the button to appear. No further configuration is required.

What if my website can’t run custom JavaScript?

Use a deeplink to Google’s source preferences page instead. It requires the reader to search for your site by name once they land there, so it’s less smooth, but it works anywhere a normal link can go.

How many people are using Preferred Sources?

Google reported more than 600,000 unique sources selected as of late August 2026, up from around 90,000 in December 2025.

Conclusion

The Preferred Sources button is a small, low-cost addition. One script, one div, a few minutes of testing. It won’t move your organic rankings, but in a search landscape where AI generated answers are absorbing a growing share of clicks, giving your existing readers an easy, one-tap way to keep choosing you is a reasonable bet. Especially given that Google says people who use it are about twice as likely to come back.

If you decide to add it, don’t stop at the code. Tell your readers it’s there. The button only works if people actually see and use it.

Sources: Google Search Central documentation; Google’s official blog post on Search/News/Discover personalization; reporting from Search Engine Roundtable, PYMNTS, Search Engine Journal, TechWyse, and Technology.org (August 2026).

Gemini SEO: How to Rank on Google Gemini in 2026

freepik a closeup shot of a circuit board with the letters 64024

The “Blue Link” is dead.

If you’re still checking your Google Search Console and obsessing over whether you’re #1 or #3 for a specific keyword, you’re measuring the height of a sinking ship. In early 2026, the digital marketing world hit a collective wall. Recent data shows that click-through rates (CTR) for traditional organic search results have plummeted by over 50% in just six months.

Why? Because Google Gemini doesn’t want your users to leave.

With the introduction of the “See More” redirect, Google has effectively moved the goalposts. When a user clicks for more info, they aren’t sent to your website – they are pushed deeper into AI Mode, a high-speed, conversational interface where Gemini summarizes your content, answers the user’s follow-up questions, and even completes the purchase for them.

For businesses trying to stay visible in this rapidly changing search environment, working with an experienced SEO agency in London has become increasingly important. Modern SEO strategies are no longer only about ranking pages but about ensuring your brand becomes a trusted source that AI systems reference.

Welcome to the era of Zero-Click Authority. If you aren’t the source Gemini cites, you don’t exist.

The New Reality: Data Points for 2026

We are no longer optimizing for humans who scroll; we are optimizing for LLMs (Large Language Models) that synthesize. To survive, you need to ditch “Rankings” and start tracking Model Citation Rate (MCR).

The 2026 Benchmarks

  • Model Citation Rate (MCR): This is your new North Star. It measures how often Gemini (or GPT-5) pulls your brand as the primary factual source in an AI response. A “Good” MCR in 2026 is 12% or higher for your niche.
  • Gemini 3 Flash vs. GPT-5: Our internal testing shows a massive divergence. Gemini 3 Flash favors “ecosystem signals” (YouTube, Google Maps, Chrome history), while GPT-5 leans heavily on “Direct Expert Attribution” (Whitepapers and deep-domain forums).
  • Agentic Commerce Impact: 40% of all e-commerce “searches” are now handled by AI Agents. The user says, “Gemini, find me a sustainable running shoe under $150 and buy it.” If your product isn’t formatted for Agentic Parsing, you lose the sale before the user even sees a photo.

Picture1

Visualizing the “Great Crossover” where AI-generated answers became the primary click-destination over traditional organic listings.

The Core Framework: The AI Signals Framework

To rank in 2026, you need to feed the machine what it craves. We call this the AI Signals Framework. It’s not about tricking an algorithm; it’s about becoming the most “digestible” truth on the internet.

Picture2

  1. Semantic Saturation (Knowledge Clusters)

Keywords are for 2019. Gemini 3 Flash thinks in Knowledge Clusters.

If you want to rank for “New Delhi Real Estate,” you can’t just repeat the phrase. You must achieve “Semantic Saturation” – covering the air quality index of specific neighborhoods, the proximity to the new Rapid Rail corridors, and the legal nuances of the RERA Act. Gemini looks for the breadth of your expertise, not the density of your keywords.

  1. Structured Data 3.0

Schema.org isn’t optional anymore—it’s the “API of the Web.” In 2026, we use Schema 3.0, which includes:

  • isVerifiedSource: A cryptographic tag linking your content to a verified human author.
  • agentAction: Code that tells Gemini exactly how an AI agent can interact with your pricing or booking system.

If your site isn’t “Agent-Readable,” Gemini will skip you for a competitor who is.

  1. Multi-Platform Citation (The Reddit/YouTube Alpha)

Gemini is a “Social Searcher.” It prioritizes sources that are being discussed in real-time on high-trust platforms.

  • The 5x Rule: A mention on a high-upvote Reddit thread or a citation in a YouTube transcript is now 5 times more valuable for your Gemini ranking than a traditional backlink from a guest post.
  • Why? Because Gemini uses these as “Human Sentiment Signals” to ensure it’s not recommending “AI-slop” to its users.

Localized AI: Winning in Delhi, New York, and Beyond

Gemini’s “Near Me” logic has evolved. In 2026, it doesn’t just look at distance; it looks at Live Context.

If a user in Delhi asks, “Where should I go for lunch?” Gemini considers:

  1. Zomato/Google Map sentiment (The last 24 hours of reviews).
  2. Current traffic on the Outer Ring Road.
  3. Real-time menu availability (parsed via Agentic AI).

To rank locally, your “Google Business Profile” must be updated daily, not monthly. The AI favors businesses that show “Active Life.”

The ‘Agentic’ Checklist: Your 2026 Action Plan

Picture3

Stop auditing for 2026. Start optimizing for the Agent. Use this technical checklist:

  • Enable “AI-Readiness”: Ensure your robots.txt explicitly allows GoogleOther and Gemini-Bot to crawl your full JavaScript renders.
  • Deploy Knowledge Graphs: Use internal linking to create a “topic map” that even a basic LLM can map in under 50ms.
  • Optimize for “Query Fan-Out”: Write your headers as answers to the 5 most likely follow-up questions a user would ask Gemini.
  • Human-in-the-Loop Verification: Add “Expert Review” timestamps to every page. Gemini filters for “freshness” more aggressively than the old core updates ever did.
  • Video-to-Text Mapping: Ensure every YouTube video you produce has a timestamped, keyword-rich transcript on your site. Gemini loves cross-referencing video data with text data.

The Final Word: Be the Source, or Be Forgotten

The shift to Gemini Search isn’t a “tweak” to the algorithm; it’s a total replacement of the search experience. The websites that thrive in 2026 won’t be the ones with the best “SEO hacks.” They will be the ones that Gemini trusts to provide the “Final Answer.”

Picture4

A flow chart showing how Gemini identifies a need, scans verified Knowledge Clusters, checks social sentiment on Reddit, and completes a transaction via an Agentic API.

The era of the blue link is over. The era of the Cited Authority has begun. Are you in the summary, or are you in the graveyard?