4f5f290514
Simplified disable_wp_cron_exists() to use single grep instead of piping. Before: grep -E "pattern" file | grep -q "true" After: grep -E "pattern.*true" file Impact: - One less grep process spawned - Cleaner, more readable code - Negligible performance gain but better practice Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>