The lightning bolt has faded. In 2016, Google launched AMP. In 2026, the requirement for “Top Stories” is gone.
Is AMP dead? Yes. Should you use it on your WordPress site? No.
In this 1500-word analysis, we explain the rise and fall of AMP.
Is AMP still relevant in 2026
No. AMP (Accelerated Mobile Pages) is no longer relevant for new WordPress projects in 2026. Google removed the AMP requirement for Top Stories in 2021, and Core Web Vitals replaced AMP as the primary performance signal for search rankings. The AMP plugin for WordPress has seen an 80% drop in downloads from its peak.
If your site currently runs AMP, the only relevant question is how to remove it safely. If you are building a new site, skip AMP entirely and focus on the modern performance stack described later in this guide.
Are AMP pages dead
Yes. The AMP format itself still technically works — Google has not shut down the AMP cache or the framework. But the ecosystem that made AMP valuable has collapsed:
- No ranking advantage. AMP pages receive no preferential treatment in search results.
- No Top Stories requirement. Any page meeting Core Web Vitals thresholds qualifies.
- Publisher exodus. Major publishers (The Washington Post, BBC, Vox Media) have removed AMP implementations and reported no traffic loss.
- Development stopped. The AMP project receives minimal updates. No significant features have shipped since 2023.
Google AMP status in 2026
Google’s official position is that AMP remains “supported” but is no longer recommended or required for any search feature. The AMP cache (cdn.ampproject.org) still serves cached pages, but Google has not invested in new AMP capabilities since Core Web Vitals became the primary performance metric.
For WordPress site owners, the practical status is clear: uninstall the AMP plugin, set up redirects, and invest in native performance optimization instead. See our WordPress security hardening guide for the full performance and security stack that replaces AMP.
Part 1: Why AMP failed
The goal was speed. The solution was to ban JavaScript.
The compromise
The cost was high:
- Brand dilution:
google.com/amp/yoursite.com. - Conversion killer: No complex forms.
- Maintenance nightmare: Two versions of every template.
The shift to Core Web Vitals
In 2021, Google introduced Core Web Vitals (CWV). The message: “We don’t care IF you use AMP. We only care that your site is FAST.”
This was the death sentence for AMP. Why maintain a restrictive parallel version of your site when you can make the original fast enough?
The timeline of AMP’s decline
| Year | Event |
|---|---|
| 2016 | AMP launched, required for Top Stories carousel |
| 2018 | Peak adoption, criticism grows about Google’s control |
| 2021 | Top Stories no longer requires AMP, Core Web Vitals launch |
| 2023 | Major publishers begin removing AMP |
| 2025 | AMP plugin downloads drop 80% from peak |
| 2026 | AMP is effectively dead for new WordPress projects |
Part 2: How to safely remove AMP (de-AMPing)
If your WordPress site still runs AMP, here is the safe removal process.
Step 1: The redirect strategy
AMP URLs like /post-name/amp/ must redirect to the original (301 Redirect).
Nginx rule:
rewrite ^/(.*)/amp/?$ /$1/ permanent;
Apache (.htaccess):
RewriteRule ^(.+)/amp/?$ /$1/ [R=301,L]
WordPress (via plugin or functions.php):
add_action('template_redirect', function() {
if (isset($_GET['amp']) || preg_match('#/amp/?$#', $_SERVER['REQUEST_URI'])) {
$clean_url = preg_replace('#/amp/?$#', '/', $_SERVER['REQUEST_URI']);
$clean_url = remove_query_arg('amp', $clean_url);
wp_redirect(home_url($clean_url), 301);
exit;
}
});
Step 2: Validate canonical tags
Original pages must point to themselves, not to any AMP version.
Step 3: Monitor in Search Console
After removing AMP:
- Check Coverage report for 404 errors on old AMP URLs
- Verify redirects are working with Screaming Frog or similar
- Monitor mobile usability report for any new issues
- Allow 2-4 weeks for Google to fully reprocess
Part 3: The modern performance stack (2026)
You do not need AMP to be fast. Here is what to use instead.
1. Image optimization (AVIF)
AVIF delivers 50% smaller files than WebP with better quality. Use ShortPixel or Imagify to auto-convert on upload.
2. Interaction to Next Paint (INP)
INP replaced FID as the responsiveness metric. Defer non-critical JavaScript, use requestIdleCallback, and minimize main thread blocking.
3. Caching and CDN
Use Cloudflare Edge Cache or Bunny.net to serve pages from the edge with sub-50ms TTFB globally.
4. Critical CSS
Inline the CSS needed for above-the-fold content, defer the rest. WP Rocket and FlyingPress handle this automatically.
5. Font optimization
Use font-display: swap, preload critical fonts, and consider system font stacks for body text.
Performance comparison
| Metric | AMP site | Modern stack (no AMP) |
|---|---|---|
| LCP | 1.2s | 0.8s |
| INP | N/A (no JS) | 85ms |
| CLS | 0.02 | 0.01 |
| Forms | Limited | Full capability |
| Analytics | Restricted | Full GA4 + GTM |
| Conversions | Lower | Higher |
Summary
The AMP experiment is over. The open web won. Uninstall the plugin.
Focus your energy on Core Web Vitals, modern image formats, edge caching, and smart JavaScript management. Your site will be faster than AMP ever was, with none of the restrictions.
Explore our WordPress speed optimization services to take your project further.


