wp-ffpc/uninstall.php
Peter Molnar 525fc33839 1.8.0
2015-04-29 09:40:12 +01:00

15 lines
315 B
PHP

<?php
/**
* uninstall file for WP-FFPC; uninstall hook does not remove the databse options
*/
// exit if uninstall not called from WordPress
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
/* get the worker file */
include_once ( 'wp-ffpc.php' );
/* run uninstall function */
$wp_ffpc->plugin_uninstall();