delete_plugin WordPress Action Hook
The delete_plugin hook is called when a plugin is deleted. It is passed the path of the plugin file as an argument. This hook can be used to perform cleanup operations when a plugin is deleted.
do_action( 'delete_plugin', string $plugin_file ) #
Fires immediately before a plugin deletion attempt.
Parameters
- $plugin_file
(string)Path to the plugin file relative to the plugins directory.
Source
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |