Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_transient_{$transient}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1583       *
1584       * The dynamic portion of the hook name, `$transient`, refers to the transient name.
1585       *
1586       * @since 2.9.0
1587       * @since 4.4.0 The `$transient` parameter was added.
1588       *
1589       * @param mixed  $value     Value of site transient.
1590       * @param string $transient Transient name.
1591       */
1592      return apply_filters( 'site_transient_' . $transient, $value, $transient );
1593 }
1594
1595 /**
1596  * Set/update the value of a site transient.
1597  *
1598  * You do not need to serialize values, if the value needs to be serialize, then
1599  * it will be serialized before it is set.
1600  *
1601  * @since 2.9.0