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

$options = 'dnxcf_options';

delete_option( $options );

?>