Top Google Search Results
- php - -WP Multisite- How to also drop plugin database tables when ...
wp-admin/includes/ms.php Line 86: $drop_tables = apply_filters( ' wpmu_drop_tables', $wpdb->tables( 'blog' ) );. So in your custom plugin, ... - Is it possible to run plugin code when a multisite blog is deleted ...
Feb 8, 2012 ... add_filter("wpmu_drop_tables", "DropTablesForBlog"); function DropTablesForBlog($tables) { global $wpdb; $tables[] = $wpdb->prefix . - wpmu_delete_blog (WordPress Function) - WPSeek.com
$drop_tables = apply_filters( 'wpmu_drop_tables', $wpdb->tables( 'blog' ) ); foreach ( (array) $drop_tables as $table ) { $wpdb->query( "DROP TABLE IF ... - PHPXRef 0.7 : WordPress : /wp-admin/includes/ms.php source
... 82 $drop = false; 83 84 if ( $drop ) { 85 86 $drop_tables = apply_filters( ' wpmu_drop_tables', $wpdb->tables( 'blog' ) ); 87 88 foreach ( (array) $ drop_tables as ...