http_request_reject_unsafe_urls WordPress Filter Hook
The HTTP Request Reject Unsafe URLs hook is used to reject unsafe URL requests. This hook is called when the WordPress HTTP class is used to make a request to a URL that is considered unsafe.
apply_filters( 'http_request_reject_unsafe_urls', bool $pass_url , string $url ) #
Filters whether to pass URLs through wp_http_validate_url() in an HTTP request.
Parameters
- $pass_url
(bool)Whether to pass URLs through wp_http_validate_url(). Default false.
- $url
(string)The request URL.
Source
Changelog
Version | Description |
---|---|
5.1.0 | The $url parameter was added. |
3.6.0 | Introduced. |