Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function swift_clear_cache_after_update(){
- Swift_Performance_Cache::clear_all_cache();
- delete_option('swift_performance_messages');
- }
- if (class_exists('Swift_Performance_Cache')){
- // Theme/Plugin or core update finished
- add_action('upgrader_process_complete', 'swift_clear_cache_after_update', 1, PHP_INT_MAX);
- // Any plugin was deactivated
- add_action('deactivated_plugin', 'swift_clear_cache_after_update', 1, PHP_INT_MAX);
- // Any plugin was activated
- add_action('activated_plugin', 'swift_clear_cache_after_update', 1, PHP_INT_MAX);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement