https_ssl_verify WordPress Filter Hook
The https_ssl_verify hook is used to verify that an SSL certificate is valid and trusted. This is important for ensuring that communications between your website and your visitors are secure.
apply_filters( 'https_ssl_verify', bool $ssl_verify , string $url ) #
Filters whether SSL should be verified for non-local requests.
Parameters
- $ssl_verify
(bool)Whether to verify the SSL connection. Default true.
- $url
(string)The request URL.
Source
Changelog
Version | Description |
---|---|
5.1.0 | The $url parameter was added. |
2.8.0 | Introduced. |