mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
7 lines
208 B
Text
7 lines
208 B
Text
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;
|
|
}
|