Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Created October 29, 2025 07:40
Show Gist options
  • Save wp-seopress/842172a6f56407a13c4049a7295c83da to your computer and use it in GitHub Desktop.
Save wp-seopress/842172a6f56407a13c4049a7295c83da to your computer and use it in GitHub Desktop.
Filter XML sitemaps cache duration
add_filter( 'seopress_sitemaps_cache_duration', 'sp_sitemaps_cache_duration', 10, 1 );
function sp_sitemaps_cache_duration( $duration ) {
// default duration is 1 hour (3600 seconds)
return HOUR_IN_SECONDS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment