wp_dynamic_shortcode_settings

Static

Stores dynamic shortcode settings data created by this plugin.

Column Definitions

ColumnTypeNullable
shortcode_namevarchar(255)NO
placeholder_namevarchar(255)NO
is_javascript_variabletinyint(1)NO
get_parameters_ignorelongtextYES
post_parameters_ignorelongtextYES
validation_function_namevarchar(255)YES
attributes_ignorelongtextYES
use_dynamic_replacetinyint(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