formcierge_deactivated
Action
Since v1.0.0
Fires immediately after the Formcierge plugin is deactivated. Use this to clean up scheduled events, flush rewrite rules, or remove transients created by your addon.
includes/Core/Plugin.php
Basic Usage
add_action( 'formcierge_deactivated', function () {
wp_clear_scheduled_hook( 'my_addon_cron_event' );
} );