wp_anchors

Static

Stores anchors data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(50)NO
anchorvarchar(255)NO
titlevarchar(255)NO
post_IDint(20)NO
post_urlvarchar(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.