sudar / email-log

Email Log is a WordPress Plugin that allows you to log all emails that are sent through WordPress.
23 stars 8 forks source link

Remove table when uninstall the plugin #350

Open rajanvijayan opened 1 year ago

rajanvijayan commented 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");
?>