wp_landingpages
StaticStores landingpages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| page | int(11) | NO |
| redir_302 | text | NO |
| rewrite_js | text | NO |
| rewrite_img | text | NO |
| rewrite_links | text | NO |
| rewrite_css | text | NO |
| rewrite_local | text | NO |
| template | text | NO |
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.