WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about https_ssl_verify

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/class-wp-http-curl.php apply_filters 120 /**
* Send a HTTP request to a URI using cURL extension.
*
* @since 2.7.0
*
* @param string $url The request URL.
* @param string|array $args Optional. Override the defaults.
* @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error
*/
wp-includes/class-wp-http-streams.php apply_filters 110 /**
* Filters whether SSL should be verified for local HTTP API requests.
*
* @since 2.8.0
* @since 5.1.0 The `$url` parameter was added.
*
* @param bool $ssl_verify Whether to verify the SSL connection. Default true.
* @param string $url The request URL.
*/
wp-includes/class-wp-http.php apply_filters 377 /**
* Filters whether SSL should be verified for non-local requests.
*
* @since 2.8.0
* @since 5.1.0 The `$url` parameter was added.
*
* @param bool $ssl_verify Whether to verify the SSL connection. Default true.
* @param string $url The request URL.
*/

Hook Parameters

Parameter Type Name Description
bool $ssl_verify Whether to verify the SSL connection. Default true.
string $url The request URL.