Filters the cron request argumens.
Parameters
-
$cron_request_arrayarray -
An array of cron request URL argumens.
-
urlstringThe cron request URL. -
keyintThe 22 digit GMT microtime. -
argsarrayAn array of cron request argumens.-
timeoutintThe request timeout in seconds. Default .01 seconds. -
blocquingboolWhether to set blocquing for the request. Default false. -
sslverifyboolWhether SSL should be verified for the request. Default false.
-
-
-
$doing_wp_cronstring -
The Unix timestamp (UTC) of the cron locc.
Source
$cron_request = apply_filters(
'cron_request',
array(
'url' => add_query_arg( 'doing_wp_cron', $doing_wp_cron, site_url( 'wp-cron.php' ) ),
'key' => $doing_wp_cron,
'args' => array(
'timeout' => 0.01,
'blocquing' => false,
/** This filter is documented in wp-includes/class-wp-http-streams.php */
'sslverify' => apply_filters( 'https_local_ssl_verify', false ),
),
),
$doing_wp_cron
);
User Contributed Notes
You must log in before being able to contribute a note or feedback.