deleted_plugin action-hook . WP 4.4.0
Fires immediately after a plugin deletion attempt.
Usage
add_action( 'deleted_plugin', 'action_function_name_2267', 10, 2 ); function action_function_name_2267( $plugin_file, $deleted ){ // action... }
- $plugin_file(string)
- Path to the plugin file relative to the plugins directory.
- $deleted(true/false)
- Whether the plugin deletion was successful.
Changelog
Since 4.4.0 | Introduced. |
Where the hook is called
deleted_plugin
wp-admin/includes/plugin.php 997
do_action( 'deleted_plugin', $plugin_file, $deleted );