deleted_site_transient
Fires after a transient is deleted.
Description
Parameters (1)
- 0. $transient (string)
- Deleted transient name.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'deleted_site_transient', $transient );
- The following example is for adding a hook callback.
- // define the deleted_site_transient callback
- function action_deleted_site_transient( $transient ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'deleted_site_transient', 'action_deleted_site_transient', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'deleted_site_transient', 'action_deleted_site_transient', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/option.php
- do_action( 'deleted_site_transient', $transient );