WordPress开发函数allowed_http_request_hosts()
WordPress开发函数allowed_http_request_hosts(),Mark允许对HTTP请求…
WordPress开发函数allowed_http_request_hosts(),Mark允许对HTTP请求安全的重定向主机。
用法:
allowed_http_request_hosts( bool $is_external, string $host )
描述
附加到’ http_request_host_is_external ‘过滤器。
参数
$is_external
(bool) (必需)
$host
(string) (必需)
返回
(bool)
来源
文件: wp-includes/http.php
function allowed_http_request_hosts( $is_external, $host ) {
if ( ! $is_external && wp_validate_redirect( ‘http://’ . $host ) ) {
$is_external = true;
}
return $is_external;
}
更新日志:
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!