Re-enable commented out testing code.
This commit is contained in:
parent
a166cf94bd
commit
aa7d1591c4
1 changed files with 24 additions and 24 deletions
|
@ -40,31 +40,31 @@ add_filter(
|
||||||
3
|
3
|
||||||
);
|
);
|
||||||
|
|
||||||
// /**
|
/**
|
||||||
// * Add a filter for http_request_host_is_external
|
* Add a filter for http_request_host_is_external
|
||||||
// *
|
*
|
||||||
// * TODO: Remove this.
|
* TODO: Remove this.
|
||||||
// *
|
*
|
||||||
// * @todo This filter is temporary code needed to do local testing.
|
* @todo This filter is temporary code needed to do local testing.
|
||||||
// */
|
*/
|
||||||
// add_filter( 'http_request_host_is_external', 'custom_http_request_host_is_external', 10, 3 );
|
add_filter( 'http_request_host_is_external', 'custom_http_request_host_is_external', 10, 3 );
|
||||||
|
|
||||||
// // Your custom callback function
|
// Your custom callback function
|
||||||
// function custom_http_request_host_is_external( $is_external, $host, $url ) {
|
function custom_http_request_host_is_external( $is_external, $host, $url ) {
|
||||||
// $is_external = true;
|
$is_external = true;
|
||||||
|
|
||||||
// return $is_external;
|
return $is_external;
|
||||||
// }
|
}
|
||||||
|
|
||||||
// /**
|
/**
|
||||||
// * Don't verify ssl certs for testing.
|
* Don't verify ssl certs for testing.
|
||||||
// *
|
*
|
||||||
// * TODO: Remove this.
|
* TODO: Remove this.
|
||||||
// *
|
*
|
||||||
// * @todo This filter is temporary code needed to do local testing.
|
* @todo This filter is temporary code needed to do local testing.
|
||||||
// */
|
*/
|
||||||
// add_filter( 'https_ssl_verify', 'dont_verify_local_dev_https', 10, 3 );
|
add_filter( 'https_ssl_verify', 'dont_verify_local_dev_https', 10, 3 );
|
||||||
|
|
||||||
// function dont_verify_local_dev_https( $url ) {
|
function dont_verify_local_dev_https( $url ) {
|
||||||
// return false;
|
return false;
|
||||||
// }
|
}
|
||||||
|
|
Loading…
Reference in a new issue