query( "DROP TABLE IF EXISTS {$wpdb->prefix}" . WC_GLA_SLUG . "_{$table}" ); } // delete options foreach ( Options::get_all_option_keys() as $option ) { delete_option( WC_GLA_SLUG . "_{$option}" ); } // delete transients foreach ( Transients::get_all_transient_keys() as $transient ) { delete_transient( WC_GLA_SLUG . "_{$transient}" ); } // delete products metadata foreach ( ProductMetaHandler::get_all_meta_keys() as $meta_key ) { delete_post_meta_by_key( WC_GLA_METAKEY_PREFIX . "_{$meta_key}" ); } // delete products attributes foreach ( AttributeManager::get_available_attribute_ids() as $attribute_id ) { delete_post_meta_by_key( WC_GLA_METAKEY_PREFIX . "_{$attribute_id}" ); } }