https_ssl_verify, $options[verify], $url

https_ssl_verify, $options[verify], $url

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('https_ssl_verify, $options[verify], $url') is found 1 times:

  • /wp-includes/class-wp-http.php line 398
    		 * @param bool|string $ssl_verify Boolean to control whether to verify the SSL connection
    		 *                                or path to an SSL certificate.
    		 * @param string      $url        The request URL.
    		 */
    		$options['verify'] = apply_filters( 'https_ssl_verify', $options['verify'], $url );
    
    		// Check for proxies.
    		$proxy = new WP_HTTP_Proxy();
    		if ( $proxy->is_enabled() && $proxy->send_through_proxy( $url ) ) {
    			$options['proxy'] = new WpOrg\Requests\Proxy\Http( $proxy->host() . ':' . $proxy->port() );