Advertisement
swte

Subcache example

Jan 9th, 2020
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_filter('swift_performance_cache_folder_prefix', function($prefix){
  2.     if (isset($COOKIE['your-cookie'])){
  3.         return 'approved';
  4.     }
  5.  
  6.     return $prefix;
  7. });
  8.  
  9. add_action('swift_performance_prebuild_cache_hit', function($permalink){
  10.     $COOKIE['your-cookie'] = 'set';
  11.     Swift_Performance::prebuild_cache_hit($permalink);
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement