Advertisement
Guest User

Untitled

a guest
Apr 10th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. add_action( 'wppusher_theme_was_updated', 'k8_clear_cache' );
  2.  
  3. function k8_clear_cache(){
  4.    
  5.     if (has_action('ce_clear_cache')) {
  6.         do_action('ce_clear_cache');
  7.     }
  8.  
  9.     if(function_exists('fvm_purge_all')) {
  10.         fvm_purge_all();
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement