wppaste
WordPress

apply_filters( 'http_request_timeout', float $timeout_value, string $url )

Since
2.7.0, 5.1.0
Filters the timeout value for an HTTP request.

Compatibility

WordPress
since 5.1.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$timeout_valuefloat
Time in seconds until a request times out. Default 5.
$urlstring
The request URL.

Where this hook fires · 1

  • wp-includes/class-wp-http.php:181WP_Http::request()

Source code

			 * @since 2.7.0			 * @since 5.1.0 The `$url` parameter was added.			 *			 * @param float  $timeout_value Time in seconds until a request times out. Default 5.			 * @param string $url           The request URL.			 */			'timeout'             => apply_filters( 'http_request_timeout', 5, $url ),			/**			 * Filters the number of redirects allowed during an HTTP request.			 *			 * @since 2.7.0			 * @since 5.1.0 The `$url` parameter was added.			 *

Changelog

Introduced in 2.7.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

5.1.0
The $url parameter was added.from the docblock
2.7.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.