Advertisement
swte

Deprioritize WooCommerce Category/Tags Warmup Table

May 26th, 2020
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. /**
  3. * Plugin Name: Swift Performance Tweaks
  4. */
  5.  
  6.  
  7. add_filter('swift_performance_default_warmup_priority', function($priority, $key, $url){
  8. if (preg_match('~product-(tag|category)~', $url)){
  9. $priority += 3000;
  10. }
  11.  
  12. return $priority;
  13. }, 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement