Home / Admin / AIOSEO – Increase SEO Analyzer TimeOut
Duplicate Snippet

Embed Snippet on Your Site

AIOSEO – Increase SEO Analyzer TimeOut

This snippet will increase the Timeout limit set for the SEO Analysis feature on a site.

<10
Code Preview
php
<?php
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;
}

Comments

Add a Comment