uninstall.php
745 Bytes
<?php
/**
* Functions for uninstall LearnDash
*
* @since 2.5.0
*
* @package LearnDash
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
die;
}
/**
* Remove our Multisite support file(s) to the /wp-content/mu-plugins directory.
*/
$learndash_wpmu_plugin_dir = ( defined( 'WPMU_PLUGIN_DIR' ) && defined( 'WPMU_PLUGIN_URL' ) ) ? WPMU_PLUGIN_DIR : trailingslashit( WP_CONTENT_DIR ) . 'mu-plugins';
if ( is_writable( $learndash_wpmu_plugin_dir ) ) {
$learndash_wpmu_plugin_dir_file = trailingslashit( $learndash_wpmu_plugin_dir ) . 'learndash-multisite.php';
if ( file_exists( $learndash_wpmu_plugin_dir_file ) ) {
unlink( $learndash_wpmu_plugin_dir_file );
}
}
/**
* Fires on plugin uninstall.
*/
do_action( 'learndash_uninstall' );