uninstall.php 261 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <?php // If uninstall is not called from WordPress, exit if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); } $options = include dirname(__FILE__) . '/views/includes/options.inc.php'; foreach ($options as $option) { delete_option( $option[0] ); }