You've already forked wp-fedistream
19 lines
357 B
PHP
19 lines
357 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Uninstall WP FediStream.
|
||
|
|
*
|
||
|
|
* @package WP_FediStream
|
||
|
|
*/
|
||
|
|
|
||
|
|
// If uninstall not called from WordPress, exit.
|
||
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
||
|
|
exit;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Load autoloader.
|
||
|
|
$autoloader = __DIR__ . '/vendor/autoload.php';
|
||
|
|
if ( file_exists( $autoloader ) ) {
|
||
|
|
require_once $autoloader;
|
||
|
|
\WP_FediStream\Installer::uninstall();
|
||
|
|
}
|