Created
April 27, 2021 16:23
-
-
Save iyut/335b7e2410fc98c7f6d887037082f1d8 to your computer and use it in GitHub Desktop.
Get All WP Cron in WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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