Browse: Home / Hooks /

learndash_uninstall

do_action( 'learndash_uninstall' )

Fires on plugin uninstall.


Description #


Source #

File: sfwd-lms/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
	}
);