{ An array of cron request URL arguments. @type string $url The cron request URL. @type string $key The Unix timestamp (UTC) of the cron lock with microseconds. @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. } }
$urlstring
The cron request URL.
$keystring
The Unix timestamp (UTC) of the cron lock with microseconds.
$argsarray
An array of cron request arguments.
$timeoutint
The request timeout in seconds. Default .01 seconds.
$blockingbool
Whether to set blocking for the request. Default false.
$sslverifybool
Whether SSL should be verified for the request. Default false.
$doing_wp_cronstring
The Unix timestamp (UTC) of the cron lock with microseconds.
978* @type bool$blocking Whether to set blocking for the request.Defaultfalse.979* @type bool$sslverify Whether SSL should be verified for the request.Defaultfalse.980*}981*}982* @param string$doing_wp_cron The Unix timestamp(UTC) of the cron lock with microseconds.983*/984$cron_request=apply_filters(985'cron_request',986array(987'url'=>$cron_url,988'key'=>$doing_wp_cron,989'args'=>array(990'timeout'=>0.01,
History
Introduced in 3.5.0. Unchanged from 6.7.7 through 7.1.0.