Skip to content

https_local_ssl_verify

github-actions[bot] edited this page Aug 31, 2026 · 2 revisions

This filter is documented in wp-includes/class-wp-http-streams.php

Auto-generated Example

/**
 * This filter is documented in wp-includes/class-wp-http-streams.php.
 *
 * @param bool   $false 
 * @param string $url 
 * @return bool The filtered value.
 */
function my_https_local_ssl_verify_callback( bool $false, string $url ) {
    // Your code here.
    return $false;
}
add_filter( 'https_local_ssl_verify', 'my_https_local_ssl_verify_callback', 10, 2 );

Parameters

  • bool $false
  • string $url

Files

\apply_filters( 'https_local_ssl_verify', false, $url )

← All Hooks

Clone this wiki locally