WP_HTTP_Proxy::username() – Retrieve the username for proxy authentication.

You appear to be a bot. Output may be restricted

Description

Retrieve the username for proxy authentication.

Usage

$string = WP_HTTP_Proxy::username();

Parameters

Returns

string

Source

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

1 to 7 of 7
  public function username() {
    if ( defined( 'WP_PROXY_USERNAME' ) ) {
      return WP_PROXY_USERNAME;
    }

    return '';
  }
 

 View on GitHub View on Trac