deleted_site_transient action-hookWP 3.0.0

Fires after a transient is deleted.

Usage

add_action( 'deleted_site_transient', 'wp_kama_deleted_site_transient_action' );

/**
 * Function for `deleted_site_transient` action-hook.
 * 
 * @param string $transient Deleted transient name.
 *
 * @return void
 */
function wp_kama_deleted_site_transient_action( $transient ){

	// action...
}
$transient(string)
Deleted transient name.

Changelog

Since 3.0.0 Introduced.

Where the hook is called

delete_site_transient()
deleted_site_transient
wp-includes/option.php 2261
do_action( 'deleted_site_transient', $transient );

Where the hook is used in WordPress

Usage not found.