allowed_http_request_hosts()
Marks allowed redirect hosts safe for HTTP requests as well.
Attached to the http_request_host_is_external filter.
No Hooks.
Returns
true|false.
Usage
allowed_http_request_hosts( $is_external, $host );
- $is_external(true|false) (required)
- .
- $host(string) (required)
- .
Changelog
| Since 3.6.0 | Introduced. |
allowed_http_request_hosts() allowed http request hosts code WP 6.9
function allowed_http_request_hosts( $is_external, $host ) {
if ( ! $is_external && wp_validate_redirect( 'http://' . $host ) ) {
$is_external = true;
}
return $is_external;
}