Problems with uninstall
-
I posted this on your github repo but posting here too.
You have an error in your uninstall script that is causing your plugin to delete taxonomy terms that are not related to your plugin.
It’s this line:
$delete1 = $wpdb->query("DELETE FROM wp_terms WHERE term_id='$tax_id'");
$tax_id
is actually term_taxonomy_id per your previous query, which is NOT the same as term_id. this is causing records to be deleted from the wp_terms table that shouldn’t be, and affecting other plugins.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Problems with uninstall’ is closed to new replies.