Changeset 37535 for trunk/src/wp-login.php
- Timestamp:
- 05/23/2016 04:43:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r37474 r37535 46 46 $shake_error_codes = array( 'empty_password', 'empty_email', 'invalid_email', 'invalidcombo', 'empty_username', 'invalid_username', 'incorrect_password' ); 47 47 /** 48 * Filter the error codes array for shaking the login form.48 * Filters the error codes array for shaking the login form. 49 49 * 50 50 * @since 3.0.0 … … 107 107 108 108 /** 109 * Filter link URL of the header logo above login form.109 * Filters link URL of the header logo above login form. 110 110 * 111 111 * @since 2.1.0 … … 114 114 */ 115 115 $login_header_url = apply_filters( 'login_headerurl', $login_header_url ); 116 /** 117 * Filter the title attribute of the header logo above login form. 116 117 /** 118 * Filters the title attribute of the header logo above login form. 118 119 * 119 120 * @since 2.1.0 … … 140 141 141 142 /** 142 * Filter the login page body classes.143 * Filters the login page body classes. 143 144 * 144 145 * @since 3.5.0 … … 167 168 168 169 /** 169 * Filter the message to display above the login form.170 * Filters the message to display above the login form. 170 171 * 171 172 * @since 2.1.0 … … 197 198 if ( ! empty( $errors ) ) { 198 199 /** 199 * Filter the error messages displayed above the login form.200 * Filters the error messages displayed above the login form. 200 201 * 201 202 * @since 2.1.0 … … 207 208 if ( ! empty( $messages ) ) { 208 209 /** 209 * Filter instructional messages displayed above the login form.210 * Filters instructional messages displayed above the login form. 210 211 * 211 212 * @since 2.5.0 … … 350 351 351 352 /** 352 * Filter the subject of the password reset email.353 * Filters the subject of the password reset email. 353 354 * 354 355 * @since 2.8.0 … … 362 363 363 364 /** 364 * Filter the message body of the password reset mail.365 * Filters the message body of the password reset mail. 365 366 * 366 367 * @since 2.8.0 … … 445 446 446 447 /** 447 * Filter the life span of the post password cookie.448 * Filters the life span of the post password cookie. 448 449 * 449 450 * By default, the cookie expires 10 days from creation. To turn this … … 481 482 482 483 /** 483 * Filter the log out redirect URL.484 * Filters the log out redirect URL. 484 485 * 485 486 * @since 4.2.0 … … 515 516 $lostpassword_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : ''; 516 517 /** 517 * Filter the URL redirected to after submitting the lostpassword/retrievepassword form.518 * Filters the URL redirected to after submitting the lostpassword/retrievepassword form. 518 519 * 519 520 * @since 3.0.0 … … 684 685 if ( is_multisite() ) { 685 686 /** 686 * Filter the Multisite sign up URL.687 * Filters the Multisite sign up URL. 687 688 * 688 689 * @since 3.0.0 … … 714 715 $registration_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : ''; 715 716 /** 716 * Filter the registration redirect URL.717 * Filters the registration redirect URL. 717 718 * 718 719 * @since 3.0.0 … … 805 806 $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : ''; 806 807 /** 807 * Filter the login redirect URL.808 * Filters the login redirect URL. 808 809 * 809 810 * @since 3.0.0 … … 872 873 873 874 /** 874 * Filter the login page errors.875 * Filters the login page errors. 875 876 * 876 877 * @since 3.6.0
Note: See TracChangeset
for help on using the changeset viewer.