Empty Posts 2 Posts tables when using wp site empty
This file contains 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 | |
/** | |
* Requires WP-CLI v0.24.0-alpha or later because it needs https://github.com/wp-cli/wp-cli/pull/2647 | |
*/ | |
if ( defined( 'WP_CLI' ) && WP_CLI ) { | |
WP_CLI::add_hook( 'after_invoke:site empty', function(){ | |
global $wpdb; | |
foreach( array( 'p2p', 'p2pmeta' ) as $table ) { | |
$table = $wpdb->$table; | |
$wpdb->query( "TRUNCATE $table" ); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment