WP_Site_Health::get_good_response_time_threshold
Gets the threshold below which a response time is considered good.
Метод класса: WP_Site_Health{}
Хуки из метода
Возвращает
int. Threshold in milliseconds.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_good_response_time_threshold();
Список изменений
| С версии 6.1.0 | Введена. |
Код WP_Site_Health::get_good_response_time_threshold() WP Site Health::get good response time threshold WP 7.0
private function get_good_response_time_threshold() {
/**
* Filters the threshold below which a response time is considered good.
*
* The default is based on https://web.dev/time-to-first-byte/.
*
* @since 6.1.0
*
* @param int $threshold Threshold in milliseconds. Default 600.
*/
return (int) apply_filters( 'site_status_good_response_time_threshold', 600 );
}