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

You appear to be a bot. Output may be restricted

Description

Retrieve the password for proxy authentication.

Usage

$string = WP_HTTP_Proxy::password();

Parameters

Returns

string

Source

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

1 to 7 of 7
  public function password() {
    if ( defined( 'WP_PROXY_PASSWORD' ) ) {
      return WP_PROXY_PASSWORD;
    }

    return '';
  }
 

 View on GitHub View on Trac