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