wp_dynamic_shortcode
StaticStores dynamic shortcode data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| id_session | varchar(255) | NO |
| data | longtext | NO |
| get_post_params | longtext | YES |
| expiration_date | timestamp | NO |
| current_url | longtext | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_dynamic_shortcode ( id_session varchar(255) NOT NULL, data longtext NOT NULL, get_post_params longtext NULL, expiration_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, current_url longtext NOT NULL, PRIMARY KEY (id_session)) $charset_collate;"; dbDelta($sql);
Safe to delete?
If you have uninstalled Dynamic Shortcode, 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_dynamic_shortcode`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Dynamic Shortcode