Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Plugin Name: Swift Performance Tweaks
- */
- add_filter('swift_performance_is_cacheable', function($result){
- if (isset($_COOKIE['your-cookie-name-here'])){
- return false;
- }
- return $result;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement