Advertisement
swte

Swift Performance Cloudways Varnish Purge

Sep 19th, 2018
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. add_action('swift_performance_before_purge_varnish', function($url, $wildcard){
  2.     remove_all_filters('swift_performance_purge_varnish_method');
  3.     add_filter('swift_performance_purge_varnish_method', function() use($wildcard){
  4.         return $wildcard ? 'PURGE' : 'URLPURGE';
  5.     });
  6. },10,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement