
A news sitemap is a specialized XML file for sites approved in Google News that lists only articles published in the last 48 hours, using <news:news> tags to declare the publication and publish date. Get the recency rules wrong and your fresh reporting simply does not surface in News or Top Stories while it is still timely.
This is the strictest sitemap variant, and the constraints are non-negotiable: a hard 2-day content window, a cap of 1,000 URLs per file, and the requirement that the site already be accepted into Google News. It is not a general freshness tool; it is a purpose-built pipe for time-sensitive journalism.
What a real news sitemap looks like
<?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/city-budget-vote</loc>
<news:news>
<news:publication>
<news:name>Example Daily</news:name>
<news:language>en</news:language>
</news:publication>
<news:publication_date>2026-01-06T07:30:00+00:00</news:publication_date>
<news:title>City Council Approves 2026 Budget</news:title>
</news:news>
</url>
</urlset>Four elements do the work: the publication name, the language, the exact publish date in W3C format, and the article title. That is it. No priority, no changefreq, no images, keep it lean.
News sitemap rules that trip people up
| Rule | The requirement | Why it bites |
|---|---|---|
| Content window | Articles from the last 2 days only | Older URLs left in the file dilute trust in the whole sitemap |
| URL limit | Max 1,000 URLs per file | Half the 50,000 general-sitemap limit; high-volume publishers must split |
| Publication name | Must exactly match your name in Google News | A mismatch and Google cannot associate the article with your outlet |
| Publish date | Accurate W3C datetime with timezone | Fudged dates are treated as manipulation and hurt eligibility |
| Google News acceptance | Site already approved | Without it the sitemap does nothing for News surfaces |
The 2-day window means this file needs to update constantly. An article ages out and you pull it; a new one publishes and you add it. A static, once-a-week news sitemap is worse than useless, it just signals staleness.
Why the 2-day window is so unforgiving
The 48-hour rule is not a suggestion Google rounds up on. An article's clock starts at its <news:publication_date>, and once that date is more than two days old the entry is dead weight in the file. Leave a pile of week-old URLs sitting in there and you are not just wasting bytes, you are telling Google your news sitemap is unmaintained, which erodes trust in the whole file. That is the difference from a regular sitemap, where old URLs are perfectly fine to keep listed.
Practically, this means the file has to be generated dynamically, on every request or on a tight cron, so it always reflects a rolling two-day slice. Any newsroom trying to maintain it as a static export by hand will fall behind within a day, and the whole point, getting timely stories discovered while they are still timely, is lost.
How to check it on your own site
- Open the news sitemap URL and confirm valid XML with the
xmlns:newsnamespace on the<urlset>line. - Scan the
<news:publication_date>values. Every one should fall inside the last 48 hours. If older entries linger, your generator is not pruning them. - Confirm
<news:name>matches your publication name in the Google Publisher Center to the letter. - Submit the file in Google Search Console under Sitemaps and watch for parse errors specific to the news namespace.
- Spot-check a fresh article with the URL Inspection tool to confirm it is crawlable and indexable while it is still timely.
Common mistakes and how to fix them
- Leaving stale URLs in the file. Anything older than 2 days should be gone. Automate the prune, do not do it by hand.
- Publication name mismatch. If
<news:name>does not match Publisher Center exactly, Google cannot tie the article to your outlet. Copy it verbatim. - Cramming evergreen pages in. Category pages, tags, and old explainers do not belong here. This file is breaking-and-recent news only.
- Ignoring the 1,000-URL cap. Blow past it and the file is invalid. High-volume newsrooms split into multiple news sitemaps behind an index.
- Assuming the sitemap gets you into News. It does not. You must already be accepted; the sitemap only helps Google find your articles faster once you are in.
FAQ
How far back can articles go in a news sitemap?
Two days. Google only reads articles published in the last 48 hours from a news sitemap. Anything older should be removed, and it stays covered by your regular XML sitemap instead.
Do I need a news sitemap to appear in Google News?
No, it is optional. Google can discover news articles through normal crawling. The sitemap speeds up discovery of time-sensitive pieces, which is where minutes genuinely matter, but it is not a gate.
Why is the URL limit only 1,000 when regular sitemaps allow 50,000?
Because a news sitemap only ever holds two days of articles, 1,000 URLs is plenty for almost any outlet. If you genuinely publish more than that in 48 hours, split across multiple news sitemaps referenced from a sitemap index.
Can I combine news tags with image or video tags?
Keep the news sitemap focused. Google's current guidance strips it down to the core news elements, so put image and video data in their own sitemaps. Mixing everything in makes the file harder to keep inside the 2-day window.
How is a news sitemap different from the other sitemap types?
It is the strictest. A video sitemap and an image sitemap have no recency window and much higher URL limits. News trades that flexibility for speed on time-critical content, and demands Google News membership to matter at all.
Related: XML Sitemap, Google News and Top Stories Optimization, NewsArticle Schema
Claude Vincent is a technical SEO consultant focused on crawlability, rendering, and AI-search visibility. He writes the field guides and case studies at SEO ProCheck, with a bias toward the durable, unglamorous work that decides whether search engines and AI answer engines can actually read and cite a site.
About SEO ProCheck
Technical SEO consulting and GEO strategy with 20 years of enterprise experience. Case studies, resources, and tools for search and AI visibility.
Work With Me
Technical SEO audits, GEO strategy, site migrations, and international SEO. Hourly consulting for teams who need hands-on support, not just reports.







