{ 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. } }
$urlstring
The cron request URL.
$keyint
The 22 digit GMT microtime.
$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.
928* @type bool$blocking Whether to set blocking for the request.Defaultfalse.929* @type bool$sslverify Whether SSL should be verified for the request.Defaultfalse.930*}931*}932* @param string$doing_wp_cron The unix timestamp of the cron lock.933*/934$cron_request=apply_filters(935'cron_request',936array(937'url'=>add_query_arg('doing_wp_cron',$doing_wp_cron,site_url('wp-cron.php')),938'key'=>$doing_wp_cron,939'args'=>array(940'timeout'=>0.01,
History
Introduced in 3.5.0. Unchanged from 6.7.7 through 7.1.0.