cron_request, $cron_request_array

cron_request, $cron_request_array

Hook Type: filter

See hook in core

Displaying hooks found in version: w3-total-cache.2.10.3

apply_filters('cron_request, $cron_request_array') is found 1 times:

  • /Util_Environment.php line 1934
    			),
    		);
    
    		// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- Calling native WordPress hook.
    		$cron_request = apply_filters( 'cron_request', $cron_request_array );
    
    		// Enforce a blocking request in case something that's hooked onto the 'cron_request' filter sets it to false.
    		$cron_request['args']['blocking'] = true;
    
    		$w3tc_result = wp_remote_post( $cron_request['url'], $cron_request['args'] );