Advertisement
swte

Clear all cache on post update

Mar 25th, 2021
740
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Plugin Name: Swift Performance Tweaks
  4.  */
  5.  
  6.  
  7. add_action('save_post', function(){
  8.     if (class_exists('Swift_Performance_Cache')){
  9.         Swift_Performance_Cache::clear_all_cache();
  10.     }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement