WP_Recovery_Mode::get_link_ttl()protectedWP 5.2.0

Gets the number of seconds the recovery mode link is valid for.

Метод класса: WP_Recovery_Mode{}

Хуки из метода

Возвращает

int. Interval in seconds.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_link_ttl();

Список изменений

С версии 5.2.0 Введена.

Код WP_Recovery_Mode::get_link_ttl() WP 6.5.2

protected function get_link_ttl() {

	$rate_limit = $this->get_email_rate_limit();
	$valid_for  = $rate_limit;

	/**
	 * Filters the amount of time the recovery mode email link is valid for.
	 *
	 * The ttl must be at least as long as the email rate limit.
	 *
	 * @since 5.2.0
	 *
	 * @param int $valid_for The number of seconds the link is valid for.
	 */
	$valid_for = apply_filters( 'recovery_mode_email_link_ttl', $valid_for );

	return max( $valid_for, $rate_limit );
}