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
1792       *
1793       * The dynamic portion of the hook name, `$transient`, refers to the transient name.
1794       *
1795       * @since 2.9.0
1796       * @since 4.4.0 The `$transient` parameter was added.
1797       *
1798       * @param mixed  $value     Value of site transient.
1799       * @param string $transient Transient name.
1800       */
1801      return apply_filters( "site_transient_{$transient}", $value, $transient );
1802 }
1803
1804 /**
1805  * Sets/updates the value of a site transient.
1806  *
1807  * You do not need to serialize values. If the value needs to be serialized,
1808  * then it will be serialized before it is set.
1809  *
1810  * @since 2.9.0