On this page
register_deactivation_hook( string $file, callable $callback )
Sets the deactivation hook for a plugin.
Description
When a plugin is deactivated, the action ‘deactivate_PLUGINNAME’ hook is called. In the name of this hook, PLUGINNAME is replaced with the name of the plugin, including the optional subdirectory. For example, when the plugin is located in wp-content/plugins/sampleplugin/sample.php, then the name of this hook will become ‘deactivate_sampleplugin/sample.php’.
When the plugin consists of only one file and is (as by default) located at wp-content/plugins/sample.php the name of this hook will be ‘deactivate_sample.php’.
Parameters
$filestring Required-
The filename of the plugin including the path.
$callbackcallable Required-
The function hooked to the
'deactivate_PLUGIN'action.
Source
File: wp-includes/plugin.php. View all references
function register_deactivation_hook( $file, $callback ) {
$file = plugin_basename( $file );
add_action( 'deactivate_' . $file, $callback );
}
Related
Uses
| Uses | Description |
|---|---|
| plugin_basename() wp-includes/plugin.php | Gets the basename of a plugin. |
| add_action() wp-includes/plugin.php | Adds a callback function to an action hook. |
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/register_deactivation_hook