WC_Install::drop_tables()public staticWC 1.0

Drop WooCommerce tables.

Метод класса: WC_Install{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WC_Install::drop_tables();

Код WC_Install::drop_tables() WC 8.7.0

public static function drop_tables() {
	global $wpdb;

	$tables = self::get_tables();

	foreach ( $tables as $table ) {
		// phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared
		$wpdb->query( "DROP TABLE IF EXISTS {$table}" );
		// phpcs:enable WordPress.DB.PreparedSQL.InterpolatedNotPrepared
	}
}