A Complete 2026 Guide for Publishers
What it does, why it matters, and exactly how to embed it, with code.
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.
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.
Adoption has picked up at each stage, and it jumped noticeably once the button removed the friction of Google’s settings page:
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.
- 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.
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).








Why Content is Still King


