Skip to content

Instantly share code, notes, and snippets.

@joshuaiz
Created September 30, 2018 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuaiz/fa0e67144a4fae46a1ffa5ab5aa4f9da to your computer and use it in GitHub Desktop.
Save joshuaiz/fa0e67144a4fae46a1ffa5ab5aa4f9da to your computer and use it in GitHub Desktop.
WordPress: Clear WP Super Cache after WP Migrate DB Pro migration
<?php
// Add this to your functions.php file of the active theme
add_action( 'wpmdb_migration_complete', 'wpmdb_clear_wp_super_cache', 2, 20 );
function wpmdb_clear_wp_super_cache() {
if (function_exists('wp_cache_clear_cache')) {
wp_cache_clear_cache();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment