wp_landingpages

Static

Stores landingpages data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
pageint(11)NO
redir_302textNO
rewrite_jstextNO
rewrite_imgtextNO
rewrite_linkstextNO
rewrite_csstextNO
rewrite_localtextNO
templatetextNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `landingpages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `page` int(11) NOT NULL, `redir_302` text NOT NULL, `rewrite_js` text NOT NULL, `rewrite_img` text NOT NULL, `rewrite_links` text NOT NULL, `rewrite_css` text NOT NULL, `rewrite_local` text NOT NULL, `template` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) AUTO_INCREMENT=1 ; ');

Safe to delete?

If you have uninstalled HTML Landing Page, 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_landingpages`;

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