wp_linkclicks

Static

Stores linkclicks data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑link_idINTNO
link_urlTEXTNO
link_clicksINTNO
link_dateDATETIMENO
link_titleTEXTNO

CREATE TABLE Statement

CREATE TABLE `wp_linkclicks` ( `link_id` INT NOT NULL AUTO_INCREMENT , `link_url` TEXT NOT NULL , `link_clicks` INT NOT NULL , `link_date` DATETIME NOT NULL , `link_title` TEXT NOT NULL , UNIQUE ( `link_id` ) );

Safe to delete?

If you have uninstalled Ozh' Click Counter, 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_linkclicks`;

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