Top Google Search Results
- #10788 (Standardize hooks across the transient and options APIs ...
Also, I noticed that the pre_transient_<transient> use of false means that the filter cant be used to return (bool)false through the filter, Perhaps that should be ... - get_transient | A HitchHackers guide through WordPress
Feb 12, 2011 ... function get_transient( $transient ) { global $_wp_using_ext_object_cache; $pre = apply_filters( 'pre_transient_' . $transient, false ); if ( false ! - get_transient (WordPress Function) - WPSeek.com
<?php function get_transient( $transient ) { global $_wp_using_ext_object_cache ; $pre = apply_filters( 'pre_transient_' . $transient, false ); if ( false !== $pre ) ... - WordPress: Storing Temporary Information
Mar 9, 2011 ... The first ( pre_transient_$transient ) is applied before the transient is retrieved. The second ( transient_$transient ) is applied after it's been ...