Advertisement
swte

Clear post cache hook

Apr 5th, 2021
775
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. add_action('swift_performance_clear_post_cache', function($post_id){
  2.     if (class_exists('Swift_Performance_Cache')){
  3.         Swift_Performance_Cache::clear_post_cache($post_id);
  4.     }
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement