Filters whether to suggest use of a persistent object cache and bypass default threshold checks.
$suggestbool|nullwp-admin/includes/class-wp-site-health.php:3769WP_Site_Health::should_suggest_persistent_object_cache() * * @since 6.1.0 * * @param bool|null $suggest Boolean to short-circuit, for whether to suggest using a persistent object cache. * Default null. */ $short_circuit = apply_filters( 'site_status_should_suggest_persistent_object_cache', null ); if ( is_bool( $short_circuit ) ) { return $short_circuit; } if ( is_multisite() ) { return true;Introduced in 6.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.