WP_HTTP_Proxy::host() – Retrieve the host for the proxy server.

You appear to be a bot. Output may be restricted

Description

Retrieve the host for the proxy server.

Usage

$string = WP_HTTP_Proxy::host();

Parameters

Returns

string

Source

File name: wordpress/wp-includes/class-wp-http-proxy.php
Lines:

1 to 7 of 7
  public function host() {
    if ( defined( 'WP_PROXY_HOST' ) ) {
      return WP_PROXY_HOST;
    }

    return '';
  }
 

 View on GitHub View on Trac