WC_Install::drop_tables()
Drop WooCommerce tables.
Метод класса: WC_Install{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = WC_Install::drop_tables();
Код WC_Install::drop_tables() WC Install::drop tables WC 9.8.2
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 } }