2018-01-26 15:50:15 +01:00

15 lines
304 B
PHP

<?php
/**
* Prevent Direct Access
*/
defined( 'ABSPATH' ) or die( "Restricted access!" );
/**
* Delete options on uninstall
*/
function spacexchimp_p005_uninstall() {
delete_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
}
register_uninstall_hook( __FILE__, 'spacexchimp_p005_uninstall' );