Make WordPress Core

Ticket #57590: 57590.patch

File 57590.patch, 2.9 KB (added by thomasplevy, 19 months ago)

Adds CSS clasnames to the lost password, registrartion, and log in anchors on wp-login.php

  • src/wp-login.php

    diff --git a/src/wp-login.php b/src/wp-login.php
    index 2b77a91669..198fe0d3d4 100644
    a b switch ( $action ) { 
    861861                </form>
    862862
    863863                <p id="nav">
    864                         <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
     864                        <a class="log-in" href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
    865865                        <?php
    866866
    867867                        if ( get_option( 'users_can_register' ) ) {
    868                                 $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
     868                                $registration_url = sprintf( '<a class="register" href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
    869869
    870870                                echo esc_html( $login_link_separator );
    871871
    switch ( $action ) { 
    10071007                </form>
    10081008
    10091009                <p id="nav">
    1010                         <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
     1010                        <a class="log-in" href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
    10111011                        <?php
    10121012
    10131013                        if ( get_option( 'users_can_register' ) ) {
    1014                                 $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
     1014                                $registration_url = sprintf( '<a class="register" href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
    10151015
    10161016                                echo esc_html( $login_link_separator );
    10171017
    switch ( $action ) { 
    11121112                </form>
    11131113
    11141114                <p id="nav">
    1115                         <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
     1115                        <a class="log-in" href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
    11161116                        <?php
    11171117
    11181118                        echo esc_html( $login_link_separator );
    11191119
    1120                         $html_link = sprintf( '<a href="%s">%s</a>', esc_url( wp_lostpassword_url() ), __( 'Lost your password?' ) );
     1120                        $html_link = sprintf( '<a class="lost-password" href="%s">%s</a>', esc_url( wp_lostpassword_url() ), __( 'Lost your password?' ) );
    11211121
    11221122                        /** This filter is documented in wp-login.php */
    11231123                        echo apply_filters( 'lost_password_html_link', $html_link );
    switch ( $action ) { 
    14811481                                <?php
    14821482
    14831483                                if ( get_option( 'users_can_register' ) ) {
    1484                                         $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
     1484                                        $registration_url = sprintf( '<a class="register" href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
    14851485
    14861486                                        /** This filter is documented in wp-includes/general-template.php */
    14871487                                        echo apply_filters( 'register', $registration_url );
    switch ( $action ) { 
    14891489                                        echo esc_html( $login_link_separator );
    14901490                                }
    14911491
    1492                                 $html_link = sprintf( '<a href="%s">%s</a>', esc_url( wp_lostpassword_url() ), __( 'Lost your password?' ) );
     1492                                $html_link = sprintf( '<a class="lost-password" href="%s">%s</a>', esc_url( wp_lostpassword_url() ), __( 'Lost your password?' ) );
    14931493
    14941494                                /**
    14951495                                 * Filters the link that allows the user to reset the lost password.