wp-includes/class-wp-recovery-mode-link-service.php:108Gets a URL to begin recovery mode.
$tokenstring$keystringstringOne hook fires while WP_Recovery_Mode_Link_Service::get_recovery_mode_begin_url() runs, in this order:
Filters the URL to begin recovery mode.
private function get_recovery_mode_begin_url( $token, $key ) { $url = add_query_arg( array( 'action' => self::LOGIN_ACTION_ENTER, 'rm_token' => $token, 'rm_key' => $key, ), wp_login_url() ); /** * Filters the URL to begin recovery mode. * * @since 5.2.0 * * @param string $url The generated recovery mode begin URL. * @param string $token The token used to identify the key. * @param string $key The recovery mode key. */ return apply_filters( 'recovery_mode_begin_url', $url, $token, $key ); }Introduced in 5.2.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/class-wp-recovery-mode-link-service.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.