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;
}