delete_transient_{$transient}

delete_transient_{$transient}

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('delete_transient_{$transient}') is found 1 times:

  • /wp-includes/option.php line 1382
    1378
    1379
    1380
    1381
    1382
    1383
    1384
    1385
    1386
    1387
    1388
    * @since 3.0.0
     *
     * @param string $transient Transient name.
     */
    do_action( "delete_transient_{$transient}", $transient );
     
    if ( wp_using_ext_object_cache() || wp_installing() ) {
        $result = wp_cache_delete( $transient, 'transient' );
    } else {
        $option_timeout = '_transient_timeout_' . $transient;
        $option         = '_transient_' . $transient;