WP_Recovery_Mode::get_link_ttl() WordPress Method

This is the method for getting the link time to live for a given user. It is used to determine how long a user has to click on a link before it expires.

WP_Recovery_Mode::get_link_ttl() #

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


Return

(int) Interval in seconds.


Top ↑

Source

File: wp-includes/class-wp-recovery-mode.php

	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 );
	}


Top ↑

Changelog

Changelog
VersionDescription
5.2.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.