Advertisement
swte

Untitled

Oct 24th, 2018
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Plugin Name: Swift Performance Tweaks
  5.  */
  6.  
  7. add_filter('swift_performance_is_cacheable', function($result){
  8.     if (isset($_COOKIE['your-cookie-name-here'])){
  9.         return false;
  10.     }
  11.     return $result;
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement