wp_il_image_templates
StaticStores il image templates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| name | VARCHAR(160) | NO |
| description | TEXT | YES |
| instructions | LONGTEXT | YES |
| image_filename | VARCHAR(255) | YES |
| is_predefined | TINYINT(1) | NO |
| sort_order | INT | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_il_image_templates ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(160) NOT NULL, description TEXT DEFAULT '', instructions LONGTEXT DEFAULT '', image_filename VARCHAR(255) DEFAULT '', is_predefined TINYINT(1) NOT NULL DEFAULT 0, sort_order INT NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id) ) $charset;"; dbDelta( $sql_img_templates );
Safe to delete?
If you have uninstalled 4Linking — Internal Linking on Autopilot: Rules, Pillar Pages & Link Map, 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_il_image_templates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from 4Linking — Internal Linking on Autopilot: Rules, Pillar Pages & Link Map