News SEO and Top Stories
Last updated
News SEO covers two related but distinct Google surfaces: the Top Stories carousel in standard Google Search, and Google News, the standalone news product available as an app and at news.google.com. The two share some signals but have different reach, different eligibility, and different optimisation priorities.
Top Stories vs Google News
Top Stories is a SERP feature in standard Google Search. It appears as a horizontal carousel of news articles for queries where Google determines the user wants fresh, timely information. It shows stories from multiple publishers, typically published within the last 24–72 hours, though breaking news stories can surface within minutes.
Any site can appear in Top Stories. There is no approval process. Eligibility is determined algorithmically based on content quality, freshness, and E-E-A-T signals. Most SEO coverage of news conflates Top Stories with Google News, but for most publishers the Top Stories carousel in standard search is the more relevant surface.
Google News (news.google.com and the Google News app) is a dedicated news aggregator showing a broader, longer-lasting set of news content. Google News has a higher editorial bar and tends to surface established publishers more heavily. Appearing in Google News consistently requires sustained content quality and publisher authority, rather than specific technical signals alone.
Freshness signals
Freshness is the primary driver of Top Stories eligibility. Google evaluates:
Publication date and timestamp. Every article must have a visible, machine-readable publication date. Use both a human-readable date in the page copy and machine-readable timestamps in structured data and the HTTP Last-Modified header. If you update an article materially, update the dateModified value. Do not update timestamps on unchanged content to manufacture freshness: Google identifies this pattern and may suppress the publisher.
URL stability. URLs should not embed a publication date in a format that marks content as old once it ages. A URL like /seo/core-update-march-2026/ is better than /news/2026/03/15/core-update/ for longevity and crawl efficiency.
Recency. For breaking news, publication time relative to competitors matters. Earlier publication earns earlier placement in the carousel for that story.
Authorship and E-E-A-T
Google’s treatment of news content weighs E-E-A-T heavily, particularly for Your Money or Your Life (YMYL) topics.
Bylines. Every article should have a visible author byline. Anonymous content is at a disadvantage across news surfaces.
Author pages. Each byline should link to an author page showing the journalist’s name, bio, credentials, and publication history. A credentialled author covering their domain of expertise signals genuine expertise to Google’s quality systems.
Editorial standards. An About page, a named editorial team, a corrections policy, and contact information all contribute to site-level trustworthiness. Google’s Quality Rater guidelines treat these as markers of a legitimate news operation.
NewsArticle schema
NewsArticle is an extension of the Article schema type that tells Google explicitly that a piece of content is a news article. The key properties:
{
"@context": "https://schema.org",
"@type": "NewsArticle",
"headline": "Your Article Title",
"datePublished": "2026-05-07T09:00:00+00:00",
"dateModified": "2026-05-07T09:00:00+00:00",
"author": {
"@type": "Person",
"name": "Author Name",
"url": "https://example.com/authors/author-name/"
},
"image": {
"@type": "ImageObject",
"url": "https://example.com/images/article-image.jpg",
"width": 1200,
"height": 630
},
"publisher": {
"@type": "Organization",
"name": "Publication Name",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.jpg"
}
}
}
headline must match the article’s H1. datePublished and dateModified must be in ISO 8601 format. The image property is required for Top Stories rich result eligibility.
News XML sitemap
A news sitemap uses the Google News sitemap extension to help Google discover articles quickly. It should only include articles published in the last 48 hours. Unlike a standard sitemap, which can list thousands of URLs, a news sitemap is a real-time feed of fresh content.
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:news="http://www.google.com/schemas/sitemap-news/0.9">
<url>
<loc>https://example.com/news/article-slug/</loc>
<news:news>
<news:publication>
<news:name>Publication Name</news:name>
<news:language>en</news:language>
</news:publication>
<news:publication_date>2026-05-07T09:00:00+00:00</news:publication_date>
<news:title>Article Title</news:title>
</news:news>
</url>
</urlset>
Submit the news sitemap URL in Google Search Console under Sitemaps. Google’s crawler checks it frequently for recently published content.
AMP
AMP (Accelerated Mobile Pages) is no longer required for Top Stories eligibility. Google removed the AMP requirement in 2021, replacing it with Core Web Vitals as the performance benchmark for news results. Sites already using AMP can continue to do so, but building or maintaining AMP specifically for Top Stories eligibility is no longer necessary.
What suppresses news visibility
- Missing or incorrect publication dates
- No author bylines, or author pages that are placeholder content
- Thin articles with no original reporting or analysis
- Sites without HTTPS
- Core Web Vitals failures, particularly on mobile
- Content that violates Google News policies (misinformation, dangerous content, spam)
- Updating article timestamps without materially updating the content
Measuring news performance
Google Search Console includes a separate performance view for news. Under the Performance report, switch the search type to “News” to see impressions, clicks, and CTR for your articles in the Google News surface. Top Stories appearances in standard search appear under the “Web” search type with the “news result” feature filter.
Frequently asked questions
Do I need to apply to appear in Google News? For Top Stories in standard Google Search, no application is needed. For the Google News product specifically (news.google.com and the Google News app), Google uses algorithmic selection. There is no separate publisher application process in Google Search Console for most publishers.
Does my site need to be a dedicated news publisher? No. Any site publishing timely, original content on news-oriented topics can appear in Top Stories. Industry blogs, product update pages, and editorial commentary can all surface if they meet freshness and E-E-A-T signals.
How quickly can a newly published article appear in Top Stories? For sites Google already crawls frequently, new articles can appear in Top Stories within minutes of publication. A news sitemap helps signal that fresh content is available, reducing discovery latency.