mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
7 lines
233 B
Text
7 lines
233 B
Text
add_filter( 'http_request_args', 'aioseo_filter_analyzer_timeout', 1, 2 );
|
|
function aioseo_filter_analyzer_timeout( $args, $url ) {
|
|
if ( 'https://analyze.aioseo.com/v1/analyze/' === $url ) {
|
|
$args['timeout'] = 120;
|
|
}
|
|
return $args;
|
|
}
|