Help/About: Move "Get involved" link on Credits screen to the top of the page for better visibility.
Props bridgetwillard, desrosj. See #23348. Built from https://develop.svn.wordpress.org/trunk@43032 git-svn-id: http://core.svn.wordpress.org/trunk@42861 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bc5a539c4d
commit
70a214c186
|
@ -53,6 +53,12 @@ if ( ! $credits ) {
|
||||||
|
|
||||||
echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";
|
echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";
|
||||||
|
|
||||||
|
echo '<p>' . sprintf(
|
||||||
|
/* translators: %s: https://make.wordpress.org/ */
|
||||||
|
__( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
|
||||||
|
__( 'https://make.wordpress.org/' )
|
||||||
|
) . '</p>';
|
||||||
|
|
||||||
foreach ( $credits['groups'] as $group_slug => $group_data ) {
|
foreach ( $credits['groups'] as $group_slug => $group_data ) {
|
||||||
if ( $group_data['name'] ) {
|
if ( $group_data['name'] ) {
|
||||||
if ( 'Translators' == $group_data['name'] ) {
|
if ( 'Translators' == $group_data['name'] ) {
|
||||||
|
@ -104,16 +110,6 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p class="clear">
|
|
||||||
<?php
|
|
||||||
/* translators: %s: https://make.wordpress.org/ */
|
|
||||||
printf(
|
|
||||||
__( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
|
|
||||||
__( 'https://make.wordpress.org/' )
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-43030';
|
$wp_version = '5.0-alpha-43032';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue