For WordPress
GitHub
Home Modules Documentation FAQ Download
Docs Content Regression Detection

Content Regression Detection

Protect your content quality by detecting unintentional changes to post structure.

Overview

Content Regression Detection protects your content quality by detecting unintentional changes to post structure during updates. It compares current content against historical baselines.

Content Integrity Settings
Content Integrity Settings page

What It Tracks

Detection TypeDescriptionThreshold
Internal Link DropsAlerts when internal links are accidentally removed30% drop or 3+ links
Word Count ChangesMonitors significant dips in content length35% reduction
Heading StructureEnsures SEO-friendly heading hierarchyH1 count, level skips
Missing Alt TextDetects images without alt attributesAny missing

Configuration

OptionDefaultDescription
enabledfalseMaster enable toggle
post_types['post', 'page']Which post types to monitor
link_drop_percent30Percentage threshold for link drop warning
word_count_drop_percent35Percentage threshold for word count warning
snapshot_rolling_count5Number of snapshots to maintain

Developer Filters

Toggle regression detection
add_filter( 'functionalities_regression_enabled', '__return_false' );
Customize link drop threshold
add_filter( 'functionalities_regression_link_threshold', function( $threshold ) { return 20; // Alert when 20% of links are removed });