allowed_http_request_hosts

函数
allowed_http_request_hosts ( $is_external, $host )
参数
  • (bool) $is_external
    Required:
  • (string) $host
    Required:
返回值
  • (bool)
定义位置
相关方法
ms_allowed_http_request_hostsget_allowed_http_originsis_allowed_http_originwp_allowed_protocolsget_allowed_themes
引入
3.6.0
弃用
-

allowed_http_request_hosts: 这是一个过滤钩子,允许你指定哪些主机允许用于HTTP请求。

将允许的重定向主机也标记为安全的HTTP请求。

附在{@see ‘http_request_host_is_external’}过滤器上。

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

常见问题

FAQs
查看更多 >