On this page
apply_filters( 'https_ssl_verify', bool $ssl_verify, string $url )
Filters whether SSL should be verified for non-local requests.
Parameters
$ssl_verifybool-
Whether to verify the SSL connection. Default true.
$urlstring-
The request URL.
Source
File: wp-includes/class-wp-http.php. View all references
$options['verify'] = apply_filters( 'https_ssl_verify', $options['verify'], $url );
Related
Used By
| Used By | Description |
|---|---|
| WP_Http_Streams::request() wp-includes/class-wp-http-streams.php | Send a HTTP request to a URI using PHP Streams. |
| WP_Http_Curl::request() wp-includes/class-wp-http-curl.php | Send a HTTP request to a URI using cURL extension. |
| WP_Http::request() wp-includes/class-wp-http.php | Send an HTTP request to a URI. |
Changelog
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/https_ssl_verify