pre_site_transient_{$transient}

pre_site_transient_{$transient}

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('pre_site_transient_{$transient}') is found 1 times:

  • /wp-includes/option.php line 2538
    2534
    2535
    2536
    2537
    2538
    2539
    2540
    2541
    2542
    2543
    2544
    *                                   Any value other than false will short-circuit the retrieval
     *                                   of the transient, and return that value.
     * @param string $transient          Transient name.
     */
    $pre = apply_filters( "pre_site_transient_{$transient}", false, $transient );
     
    if ( false !== $pre ) {
        return $pre;
    }
     
    if ( wp_using_ext_object_cache() || wp_installing() ) {