Summery Summery
Returns the URL that allows the user to retrieve the lost password
Syntax Syntax
Parameters Parameters
- $redirect
-
(Optional) Path to redirect to on login.
Default value: ''
Return Return
(string) Lost password URL.
Source Source
File: wp-includes/general-template.php
/** * Filters content to display at the bottom of the login form. * * The filter evaluates just preceding the closing form tag element. * * @since 3.0.0 * * @param string $content Content to display. Default empty. * @param array $args Array of login form arguments. */ $login_form_bottom = apply_filters( 'login_form_bottom', '', $args ); $form = ' <form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="' . esc_url( site_url( 'wp-login.php', 'login_post' ) ) . '" method="post"> ' . $login_form_top . ' <p class="login-username"> <label for="' . esc_attr( $args['id_username'] ) . '">' . esc_html( $args['label_username'] ) . '</label> <input type="text" name="log" id="' . esc_attr( $args['id_username'] ) . '" class="input" value="' . esc_attr( $args['value_username'] ) . '" size="20" />
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |