apply_filters( 'allowed_redirect_hosts', string[] $hosts , string $host )
Filters the list of allowed hosts to redirect to.
Parameters
-
$hosts
string[] -
An array of allowed host names.
-
$host
string -
The host name of the redirect destination; empty string if not set.
Source
File: wp-includes/pluggable.php
.
View all references
$allowed_hosts = (array) apply_filters( 'allowed_redirect_hosts', array( $wpp['host'] ), isset( $lp['host'] ) ? $lp['host'] : '' );
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Allow additional redirect hosts
You can allow additional hosts when validating redirects by using the allowed_redirect_hosts filter.