deactivate_<file>
The WordPress Core deactivate file hook.
Description
Parameters (1)
- 0. $function (unknown)
- The function.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'deactivate_{$file}', $function );
- The following example is for adding a hook callback.
- // define the deactivate_<file> callback
- function action_deactivate_file( $function ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "deactivate_{$file}", 'action_deactivate_file', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "deactivate_{$file}", 'action_deactivate_file', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/plugin.php
- add_action('deactivate_' . $file, $function);