wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



pre_http_send_through_proxy › WordPress Filter Hooks

Seit3.5.0
Veraltetn/v
apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home )
Parameter: (4)
  • (bool|null) $override Whether to send the request through the proxy. Default null.
    Erforderlich: Ja
  • (string) $uri URL of the request.
    Erforderlich: Ja
  • (array) $check Associative array result of parsing the request URL with `parse_url()`.
    Erforderlich: Ja
  • (array) $home Associative array result of parsing the site URL with `parse_url()`.
    Erforderlich: Ja
Definiert in:
Codex:

Filters whether to preempt sending the request through the proxy.

Returning false will bypass the proxy; returning true will send the request through the proxy. Returning null bypasses the filter.



Ähnliche Funktionen: wp_http_supports, _http_build_query


Quellcode

$result = apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home );