WP_HTTP_Proxy::host
Retrieve the host for the proxy server.
Method of the class: WP_HTTP_Proxy{}
No Hooks.
Returns
String.
Usage
$WP_HTTP_Proxy = new WP_HTTP_Proxy(); $WP_HTTP_Proxy->host();
Changelog
| Since 2.8.0 | Introduced. |
WP_HTTP_Proxy::host() WP HTTP Proxy::host code WP 6.9.1
public function host() {
if ( defined( 'WP_PROXY_HOST' ) ) {
return WP_PROXY_HOST;
}
return '';
}