Definition:
function wp_get_schedule($hook, $args = array() {}
Retrieve Cron schedule for hook with arguments.
Parameters
- string $hook: Action hook to execute when cron is run.
- array $args: Optional. Arguments to pass to the hook’s callback function.
Return values
returns:False, if no schedule. Schedule on success.
Source code
function wp_get_schedule($hook, $args = array()) { $crons = _get_cron_array(); $key = md5(serialize($args)); if ( empty($crons) ) return false; foreach ( $crons as $timestamp => $cron ) { if ( isset( $cron[$hook][$key] ) ) return $cron[$hook][$key]['schedule']; } return false; }
3745
No comments yet... Be the first to leave a reply!