wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
ms_allowed_http_request_hosts › WordPress Function
Seit3.6.0
Veraltetn/v
› ms_allowed_http_request_hosts ( $is_external, $host )
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Adds any domain in a multisite installation for safe HTTP requests to the allowed list.
Attached to the {@see 'http_request_host_is_external'} filter.Ähnliche Funktionen: allowed_http_request_hosts, is_allowed_http_origin, get_allowed_http_origins, rest_preload_api_request, wp_allowed_protocols
Quellcode
function ms_allowed_http_request_hosts( $is_external, $host ) { global $wpdb; static $queried = array(); if ( $is_external ) { return $is_external; } if ( get_network()->domain === $host ) { return true; } if ( isset( $queried[ $host ] ) ) { return $queried[ $host ]; } $queried[ $host ] = (bool) $wpdb->get_var( $wpdb->prepare( "SELECT domain FROM $wpdb->blogs WHERE domain = %s LIMIT 1", $host ) ); return $queried[ $host ]; }