Make WordPress Core

Changeset 43032


Ignore:
Timestamp:
04/30/2018 03:15:23 AM (8 years ago)
Author:
SergeyBiryukov
Message:

Help/About: Move "Get involved" link on Credits screen to the top of the page for better visibility.

Props bridgetwillard, desrosj.
See #23348.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/credits.php

    r42814 r43032  
    5454echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";
    5555
     56echo '<p>' . sprintf(
     57        /* translators: %s: https://make.wordpress.org/ */
     58        __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
     59        __( 'https://make.wordpress.org/' )
     60) . '</p>';
     61
    5662foreach ( $credits['groups'] as $group_slug => $group_data ) {
    5763        if ( $group_data['name'] ) {
     
    105111
    106112?>
    107 <p class="clear">
    108 <?php
    109         /* translators: %s: https://make.wordpress.org/ */
    110         printf(
    111                 __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
    112                 __( 'https://make.wordpress.org/' )
    113         );
    114 ?>
    115 </p>
    116 
    117113</div>
    118114</div>
Note: See TracChangeset for help on using the changeset viewer.