Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_status_should_suggest_persistent_object_cache

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
3337            * Filters whether to suggest use of a persistent object cache and bypass default threshold checks.
3338            *
3339            * Using this filter allows to override the default logic, effectively short-circuiting the method.
3340            *
3341            * @since 6.1.0
3342            *
3343            * @param bool|null $suggest Boolean to short-circuit, for whether to suggest using a persistent object cache.
3344            *                           Default null.
3345            */
3346           $short_circuit = apply_filters( 'site_status_should_suggest_persistent_object_cache', null );
3347           if ( is_bool( $short_circuit ) ) {
3348                return $short_circuit;
3349           }
3350
3351           if ( is_multisite() ) {
3352                return true;
3353           }
3354
3355           /**