Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_status_good_response_time_threshold

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
3304           /**
3305            * Filters the threshold below which a response time is considered good.
3306            *
3307            * The default is based on https://web.dev/time-to-first-byte/.
3308            *
3309            * @param int $threshold Threshold in milliseconds. Default 600.
3310            *
3311            * @since 6.1.0
3312            */
3313           return (int) apply_filters( 'site_status_good_response_time_threshold', 600 );
3314      }
3315
3316      /**
3317       * Determines whether to suggest using a persistent object cache.
3318       *
3319       * @since 6.1.0
3320       *
3321       * @global wpdb $wpdb WordPress database abstraction object.
3322       *