wp_dynamic_shortcode_placeholders

Static

Stores dynamic shortcode placeholders data created by this plugin.

Column Definitions

ColumnTypeNullable
placeholder_namevarchar(255)NO
datalongtextNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_dynamic_shortcode_placeholders ( placeholder_name varchar(255) NOT NULL, data longtext NOT NULL, PRIMARY KEY (placeholder_name)) $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_placeholders`;

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

Other tables from Dynamic Shortcode