https_local_ssl_verify WordPress Filter Hook
The HTTPS Local SSL Verify hook is used to verify whether a local SSL certificate is valid. This is useful for ensuring that your site's SSL certificate is up to date and valid.
apply_filters( 'https_local_ssl_verify', bool $ssl_verify , string $url ) #
Filters whether SSL should be verified for local HTTP API 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. |