wp_anchors
StaticStores anchors data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(50) | NO |
| anchor | varchar(255) | NO |
| title | varchar(255) | NO |
| post_ID | int(20) | NO |
| post_url | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE `wp_anchors` ( `id` int(50) NOT NULL auto_increment, `anchor` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `post_ID` int(20) NOT NULL, `post_url` varchar(255) NOT NULL, PRIMARY KEY (`id`)) ");
Safe to delete?
If you have uninstalled Anchor Links Plugin, 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_anchors`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.