Created
September 30, 2018 02:58
-
-
Save joshuaiz/fa0e67144a4fae46a1ffa5ab5aa4f9da to your computer and use it in GitHub Desktop.
WordPress: Clear WP Super Cache after WP Migrate DB Pro migration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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