wp_default_sorting_option

Static

Stores default sorting option data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT( 20 )NO
default_statusVARCHAR( 50 )YES

CREATE TABLE Statement

CREATE TABLE default_sorting_option ( `id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT PRIMARY KEY , `default_status` VARCHAR( 50 ))"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');

Safe to delete?

If you have uninstalled Sorting Options, 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_default_sorting_option`;

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