Increase the cache preheating URL limit in SiteGround Optimizer

Increase the cache preheating URL limit in SiteGround Optimizer on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'sg_file_caching_preheat_url_limit', 'sgo_preheat_limit' );
function sgo_preheat_limit( $xml_urls ) {
    // Define custom limit for XML URL preheat.
    $xml_urls = 300;

    return $xml_urls;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.