Advertisement
swte

Warmup links (translatepress)

Mar 13th, 2020
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Plugin Name: Swift Performance Tweaks
  5.  */
  6.  
  7. add_filter('swift_performance_warmup_urls_to_save', function($urls){
  8.     $new_urls = array();
  9.     foreach ($urls as $url){
  10.         $new_urls[] = trailingslashit($url) . 'de';
  11.         $new_urls[] = trailingslashit($url) . 'en';
  12.     }
  13.     return $new_urls;
  14. });
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement