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