cron - Where in Wordpress DB are stored wp_cron tasks? -
i looking in wp_options table there nothing eventhough have set cron tasks like:
add_action('init', function() { if ( !wp_next_scheduled('my_awesome_cron_hook') ) { wp_schedule_event(time(), 'hourly', 'my_awesome_cron_hook'); } });
or stored in txt file in wordpress?
it's stored in database inside wp_options
under option_name
cron
.
you can array with: _get_cron_array()
or get_option('cron')
.
see: http://core.trac.wordpress.org/browser/trunk/wp-includes/cron.php
Comments
Post a Comment