Description
Filters the cron request arguments. An array of cron request arguments. } }
Occurrences
Filename | Line Number |
---|---|
wp-includes/cron.php | 934 |
Parameters
Type | Name | Description |
---|---|---|
array | $cron_request_array | { An array of cron request URL arguments. |
string | $doing_wp_cron | The unix timestamp of the cron lock. |
PHP Doc
/**
* Filters the cron request arguments.
*
* @since 3.5.0
* @since 4.5.0 The `$doing_wp_cron` parameter was added.
*
* @param array $cron_request_array {
* An array of cron request URL arguments.
*
* @type string $url The cron request URL.
* @type int $key The 22 digit GMT microtime.
* @type array $args {
* An array of cron request arguments.
*
* @type int $timeout The request timeout in seconds. Default .01 seconds.
* @type bool $blocking Whether to set blocking for the request. Default false.
* @type bool $sslverify Whether SSL should be verified for the request. Default false.
* }
* }
* @param string $doing_wp_cron The unix timestamp of the cron lock.
*/