wp_templates

Static

Stores templates data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
nameVARCHAR(200)NO
optionsLONGTEXTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_templates ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(200) NOT NULL DEFAULT '', options LONGTEXT, PRIMARY KEY (id) ) $charset_collate;");

Safe to delete?

If you have uninstalled WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_templates`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.