WC_Install::wpmu_drop_tables
Uninstall tables when MU blog is deleted.
Method of the class: WC_Install{}
No Hooks.
Returns
String[].
Usage
$result = WC_Install::wpmu_drop_tables( $tables );
- $tables(array) (required)
- List of tables that will be deleted by WP.
WC_Install::wpmu_drop_tables() WC Install::wpmu drop tables code WC 10.3.6
public static function wpmu_drop_tables( $tables ) {
return array_merge( $tables, self::get_tables() );
}