{ 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.
976* @type bool$blocking Whether to set blocking for the request.Defaultfalse.977* @type bool$sslverify Whether SSL should be verified for the request.Defaultfalse.978*}979*}980* @param string$doing_wp_cron The Unix timestamp(UTC) of the cron lock with microseconds.981*/982$cron_request=apply_filters(983'cron_request',984array(985'url'=>add_query_arg('doing_wp_cron',$doing_wp_cron,site_url('wp-cron.php')),986'key'=>$doing_wp_cron,987'args'=>array(988'timeout'=>0.01,
History
Introduced in 3.5.0. Unchanged from 6.7.7 through 7.1.0.