-
Notifications
You must be signed in to change notification settings - Fork 3
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
/**
* 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 );-
bool$false -
string$url
\apply_filters( 'https_local_ssl_verify', false, $url )