Add additional URLs to preload

FlyingPress default fetches URLs from your sitemap file.

If you've URLs that are not in the sitemap but should be preloaded, you can use the filter " flyingpress_urls_to_preload" like below:

add_filter('flyingpress_urls_to_preload', function($urls){
   $urls[] = "https://example.com/your-page/";
   return $urls;
});
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.