<?php
//if uninstall not called from WordPress exit
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) )
exit();
$option_name = 'wcdfe_settings';
delete_option( $option_name );
// For site options in multisite
delete_site_option( $option_name ); Back to Directory