do_action( 'learndash_uninstall' )
Fires on plugin uninstall.
Contents
Description #
Source #
File: uninstall.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_uninstall action.
*/
add_action(
'learndash_uninstall',
function() {
// Add your custom code here
}
);