Browse: Home / Hooks /

learndash_deactivated

do_action( 'learndash_deactivated' )

Fires on LearnDash plugin deactivation.


Description #


Source #

File: sfwd_lms.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash_deactivated action.
 */
add_action(
	'learndash_deactivated',
	function() {

		// Add your custom code here
	}
);
 

Changelog #

Changelog
Version Description
2.1.0 Introduced.