I was looking in wp_options table but there is nothing like that eventhough I have set my 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 is it stored in some txt file in wordpress?
It’s stored in the database inside
wp_options
under theoption_name
cron
.You can get the array with:
_get_cron_array()
orget_option('cron')
.See: http://core.trac.wordpress.org/browser/trunk/wp-includes/cron.php