Skip to content

Instantly share code, notes, and snippets.

@iyut
Created April 27, 2021 16:23
Show Gist options
  • Save iyut/335b7e2410fc98c7f6d887037082f1d8 to your computer and use it in GitHub Desktop.
Save iyut/335b7e2410fc98c7f6d887037082f1d8 to your computer and use it in GitHub Desktop.
Get All WP Cron in WordPress
add_action( 'wp_footer', function(){
$cron_jobs = get_option( 'cron' );
var_dump($cron_jobs);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment