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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -