mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://github.com/wp-media/imagify-helpers/blob/master/optimization/imagify-curl-fix/imagify-curl-fix/curl-fix.php
6 lines
201 B
Text
6 lines
201 B
Text
declare( strict_types=1 );
|
|
|
|
add_action( 'http_api_curl', function( $handle ) {
|
|
curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, 10000 );
|
|
curl_setopt( $handle, CURLOPT_TIMEOUT, 10000 );
|
|
}, 1000 );
|