Advertisement
swte

Clear cache for all subsites

Jul 20th, 2021
2,575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. foreach (get_sites() as $blog){
  4.     switch_to_blog($blog->blog_id);
  5.     if (class_exists('Swift_Performance_Cache')){
  6.         Swift_Performance_Cache::clear_all_cache();
  7.     }
  8.     restore_current_blog();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement