Open rajanvijayan opened 1 year ago
Need to add a function to delete the email_log table from the database when a user deletes the plugin
Ref:
<?php if( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) exit(); global $wpdb; $wpdb->query( "DROP TABLE IF EXISTS TABLE_NAME" ); delete_option("my_plugin_db_version"); ?>
Need to add a function to delete the email_log table from the database when a user deletes the plugin
Ref: