register_deactivation_hook() WordPress Function

The register_deactivation_hook() function is used to register a plugin's deactivation hook. This function takes two parameters: the name of the plugin file and the name of the function to be called when the plugin is deactivated.

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’.


Top ↑

Parameters

$file

(string)(Required)The filename of the plugin including the path.

$callback

(callable)(Required)The function hooked to the 'deactivate_PLUGIN' action.


Top ↑

Source

File: wp-includes/plugin.php

function register_deactivation_hook( $file, $callback ) {
	$file = plugin_basename( $file );
	add_action( 'deactivate_' . $file, $callback );
}


Top ↑

Changelog

Changelog
VersionDescription
2.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.