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’}過濾器上。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function allowed_http_request_hosts( $is_external, $host ) {
if ( ! $is_external && wp_validate_redirect( 'http://' . $host ) ) {
$is_external = true;
}
return $is_external;
}
function allowed_http_request_hosts( $is_external, $host ) { if ( ! $is_external && wp_validate_redirect( 'http://' . $host ) ) { $is_external = true; } return $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
檢視更多 >