HEX
Server: Apache
System: Linux sg2plzcpnl479111.prod.sin2.secureserver.net 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: kanika2710 (2246350)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: /home/kanika2710/public_html/wp-content/plugins/simple-taxonomy-ordering/uninstall.php
<?php
/**
 * Main Plugin Uninstall Handler.
 *
 * Cleanup Tasks:
 *  - Delete our 'yikes_simple_taxonomy_ordering_options' stored options
 *  - Delete all 'tax_position' term meta created by this plugin
 *
 * @package YIKES_Simple_Taxonomy_Ordering
 */

// If uninstall not called from WordPress, exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit;
}

// Delete the taxonomy ordering options.
delete_option( 'yikes_simple_taxonomy_ordering_options' );

// Delete `tax_position` term meta from the DB.
global $wpdb;
$wpdb->query( "DELETE FROM $wpdb->termmeta WHERE meta_key = 'tax_position'" );