wp_il_image_templates

Static

Stores il image templates data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
nameVARCHAR(160)NO
descriptionTEXTYES
instructionsLONGTEXTYES
image_filenameVARCHAR(255)YES
is_predefinedTINYINT(1)NO
sort_orderINTNO
created_atDATETIMENO
updated_atDATETIMENO

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