allowed_http_request_hosts( bool $is_external, string $host ): bool

Marks allowed redirect hosts safe for HTTP requests as well.

Description

Attached to the ‘http_request_host_is_external’ filter.

Parameters

$is_externalboolrequired
$hoststringrequired

Return

bool

Source

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

Changelog

VersionDescription
3.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.