summaryrefslogtreecommitdiffstats
path: root/uninstall.php
blob: dae27f94346b51dc97569c436f4b2caafff669b5 (plain)
1
2
3
4
5
6
7
8
9
<?php
//if uninstall not called from WordPress exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) )
    exit();

// delete our metadata for all users
delete_metadata( 'user', 0, 'dnxasi_meta_signature', '', true );
// delete options for our plugin from the options table
delete_option( 'dnxasi_settings' );