wp_dynamic_shortcode_settings
StaticStores dynamic shortcode settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| shortcode_name | varchar(255) | NO |
| placeholder_name | varchar(255) | NO |
| is_javascript_variable | tinyint(1) | NO |
| get_parameters_ignore | longtext | YES |
| post_parameters_ignore | longtext | YES |
| validation_function_name | varchar(255) | YES |
| attributes_ignore | longtext | YES |
| use_dynamic_replace | tinyint(1) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_dynamic_shortcode_settings ( shortcode_name varchar(255) NOT NULL, placeholder_name varchar(255) NOT NULL, is_javascript_variable tinyint(1) NOT NULL, get_parameters_ignore longtext NULL, post_parameters_ignore longtext NULL, validation_function_name varchar(255) NULL, attributes_ignore longtext NULL, use_dynamic_replace tinyint(1) NOT NULL, PRIMARY KEY (shortcode_name)) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
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_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Dynamic Shortcode