delete_transient_<transient>
Fires immediately before a specific transient is deleted.
Description
The dynamic portion(s) of the hook name refer to the transient name.
Parameters (1)
- 0. $transient (string)
- Transient name.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'delete_transient_{$transient}', $transient );
- The following example is for adding a hook callback.
- // define the delete_transient_<transient> callback
- function action_delete_transient_transient( $transient ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "delete_transient_{$transient}", 'action_delete_transient_transient', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "delete_transient_{$transient}", 'action_delete_transient_transient', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/option.php
- do_action( "delete_transient_{$transient}", $transient );