wp_menu_manager_plus

Verified

Stores menu manager plus data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_menu_manager_plus` (\n  `id` int NOT NULL AUTO_INCREMENT,\n  `menuid` int NOT NULL,\n  `menu_item_data` longtext,\n  `created` datetime NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3

Safe to delete?

If you have uninstalled Advanced Menu Manager Pro – Built for Content-heavy WordPress Sites to Add, Filter, Lock, and Edit Menus Easily, 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_menu_manager_plus`;

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