Content Decay: Detection, Diagnosis, and Recovery in 2026

A technical guide to identifying content decay through traffic trend analysis, ranking position decline, CTR compression, and competitor encroachment signals, with actionable recovery workflows.

Dilshad Akhtar
Dilshad Akhtar
Published: 31 July 2026
5 min read
TL;DRAI summary
  • Content decay is the gradual decline in organic traffic and ranking performance for a page that was previously performing well.
  • Decay manifests in four measurable signals.
  • Algorithm updates are the most abrupt cause.
  • The recovery action depends on the decay cause.
  • Not all decayed pages deserve recovery.
  • Run a content decay audit every 90 days.

Content decay is the gradual decline in organic traffic and ranking performance for a page that was previously performing well. Unlike cannibalization, where multiple pages compete internally, decay is driven by external forces: algorithm refreshes, competitor content improvements, changing...

Overview

Content decay is the gradual decline in organic traffic and ranking performance for a page that was previously performing well. Unlike cannibalization, where multiple pages compete internally, decay is driven by external forces: algorithm refreshes, competitor content improvements, changing search intent, and information staleness. Detecting decay early and applying the right recovery response is one of the highest-ROI activities an SEO team can perform.

1. Identifying Content Decay

Decay manifests in four measurable signals. The first and most obvious is a sustained decline in organic clicks over a 90-day window. A page that averaged 2,000 monthly clicks and has dropped to 800 over three months is in active decay. The second signal is rank position drift: the page's average SERP position moves from the top 5 to positions 8 through 12 over the same window. The third signal is click-through rate (CTR) compression: impressions hold steady but clicks drop, indicating that the page is being shown less prominently within the same SERP position or that SERP features are stealing clicks. The fourth signal is competitor encroachment: new content from competing domains begins outranking your page for its primary queries.

Google Search Console provides all four signals in a single export. Use the GSC API to fetch per-page impression, click, CTR, and average position data. Compare the trailing 90-day window against the preceding 90-day window. A click decline exceeding 30 percent with a position drop of three or more places confirms content decay [1].

import pandas as pd
from datetime import datetime, timedelta

def detect_decay(gsc_data, page_url):
    page = gsc_data[gsc_data['page'] == page_url].copy()
    page['date'] = pd.to_datetime(page['date'])
    recent = page[page['date'] >= (datetime.now() - timedelta(days=90))]
    prior = page[(page['date'] >= (datetime.now() - timedelta(days=180))) &
                 (page['date'] < (datetime.now() - timedelta(days=90)))]
    if recent.empty or prior.empty:
        return None
    click_change = (recent['clicks'].sum() - prior['clicks'].sum()) / prior['clicks'].sum()
    position_change = recent['position'].mean() - prior['position'].mean()
    return {
        'url': page_url,
        'click_change_pct': round(click_change * 100, 1),
        'position_change': round(position_change, 2),
        'is_decaying': click_change < -0.3 and position_change > 3
    }

2. Common Causes of Decay

Algorithm updates are the most abrupt cause. Google's core updates, reviews updates, and helpful content refreshes can devalue pages that were previously rewarded. After the March 2025 core update, many sites reported 20 to 40 percent traffic drops on informational content that Google's classifiers deemed lower quality than newer competitor alternatives.

Competitor investment is a slower but equally destructive force. When a competitor publishes a more comprehensive, better-cited, or more recently updated piece targeting the same query cluster, Google gradually shifts ranking preference toward the competitor. The decay appears as a slow bleed over 6 to 12 months rather than a cliff drop.

Information staleness affects pages with time-sensitive content. Statistics pages, software comparisons, industry reports, and "best of" lists all lose relevance as the data ages. A page citing 2022 statistics in a 2026 search environment signals low freshness to Google's recency algorithms. This form of decay is the most straightforward to fix: update the data and re-publish [2].

Changing search intent is the hardest cause to detect and fix. If searchers for "CRM pricing" shift from wanting informational comparisons to wanting transactional pricing pages, a blog post that once ranked well will decay regardless of content quality. Intent drift requires a format change, not just a content update.

3. Recovery Workflows

The recovery action depends on the decay cause. For algorithm-driven decay, audit the content against Google's quality rater guidelines. Improve E-E-A-T signals by adding author bios, citations, original research, and expert contributions. For competitor-driven decay, identify the specific gaps in your content versus the competitor's. A side-by-side comparison of headings, examples, data points, and structure reveals what the competitor does better.

For information staleness, update all dated references, refresh statistics to the current year, add new sections covering recent developments, and update the publication date. Google's documentation confirms that visible date updates signal freshness when the content has genuinely changed [3]. For intent-driven decay, the page may need a complete format pivot or consolidation into a newer page that better matches the current SERP dominant format.

4. Prioritizing Decayed Pages

Not all decayed pages deserve recovery. Score each candidate using a simple formula: estimated monthly traffic at peak multiplied by the keyword's business value (from conversion rate data). Pages with high peak traffic and high business value get recovery priority. Pages with low peak traffic and low business value get noindexed or deleted. This triage prevents spending recovery effort on pages that were never significant contributors.

Audit

Run a content decay audit every 90 days. Export the trailing 90-day GSC data for all pages with at least 1,000 impressions. Flag pages with click declines over 30 percent and position drops over three positions. Classify each flagged page by decay cause (algorithm, competitor, staleness, or intent). Apply the appropriate recovery workflow. Track the recovery success rate by measuring click recovery 90 days post-refresh. Archive pages that fail to recover after two refresh cycles.


References

[1] Google Search Central. "Monitoring Your Site's Performance." Google Developers, 2025. https://developers.google.com/search/docs/monitor-debug

[2] Aleyda Solis. "How to Detect and Fix Content Decay." Search Engine Land, 2025. https://searchengineland.com/content-decay-detection-fix

[3] Google Search Central. "Freshness as a Ranking Signal." Google Developers, 2025. https://developers.google.com/search/docs/fundamentals/freshness

Ready to Build Your Dream Website?

Let's discuss your project and create something amazing together.