Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: enable_loading_advanced_cache_dropin

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
3239           }
3240
3241           return array(
3242                'advanced_cache_present'        => (
3243                     file_exists( WP_CONTENT_DIR . '/advanced-cache.php' )
3244                     &&
3245                     ( defined( 'WP_CACHE' ) && WP_CACHE )
3246                     &&
3247                     /** This filter is documented in wp-settings.php */
3248                     apply_filters( 'enable_loading_advanced_cache_dropin', true )
3249                ),
3250                'page_caching_response_headers' => $page_caching_response_headers,
3251                'response_timing'               => $response_timing,
3252           );
3253      }
3254
3255      /**
3256       * Gets page cache details.
3257       *