Skip to content

Instantly share code, notes, and snippets.

@jehanf
Created June 14, 2022 05:16
Show Gist options
  • Save jehanf/ebf67d4227e823b0f62ea35fe2619f1b to your computer and use it in GitHub Desktop.
Save jehanf/ebf67d4227e823b0f62ea35fe2619f1b to your computer and use it in GitHub Desktop.
Quick & dirty way to debug a Cron Task in WordPress
add_action( 'init', function() {
error_reporting( 1 );
do_action( 'your_cron_action' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment