allowed_http_request_hosts()WP 3.6.0

Mark allowed redirect hosts safe for HTTP requests as well.

Attached to the http_request_host_is_external filter.

No Hooks.

Return

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() code WP 6.5.2

function allowed_http_request_hosts( $is_external, $host ) {
	if ( ! $is_external && wp_validate_redirect( 'http://' . $host ) ) {
		$is_external = true;
	}
	return $is_external;
}