' . esc_html( $display_name ) . '';
}
include( './admin-header.php' );
?>
' . sprintf( __( 'WordPress is created by a
worldwide team of passionate individuals.
Get involved in WordPress.' ),
'http://wordpress.org/about/',
/* translators: Url to the codex documentation on contributing to WordPress used on the credits page */
__( 'http://codex.wordpress.org/Contributing_to_WordPress' ) ) . '';
include( './admin-footer.php' );
exit;
}
echo '
' . __( 'WordPress is created by a worldwide team of passionate individuals. We couldn’t possibly list them all, but here some of the most influential people currently involved with the project:' ) . "
\n";
$gravatar = is_ssl() ? 'https://secure.gravatar.com/avatar/' : 'http://0.gravatar.com/avatar/';
foreach ( (array) $results['people'] as $group_slug => $members ) {
echo '
' . translate( $results['groups'][ $group_slug ] ) . "
\n";
echo '
' . "\n";
shuffle( $members ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
foreach ( $members as $member_slug => $member ) {
echo '- ' . "\n\t";
echo '' . "\n\t";
echo '' . $member[0] . "\n\t";
echo '
' . translate( $member[1] ) . "\n \n";
}
echo "
\n";
}
foreach ( (array) $results['lists'] as $group_slug => $members ) {
if ( $group_slug === 'translators' ) {
// Considered a special slug in the API response. (Also, will never be returned for en_US.)
$title = _x( 'Translators', 'Translate this to be the equivalent of English Translators in your language for the credits page Translators section' );
} else {
$title = translate( $results['groups'][ $group_slug ] );
if ( isset( $results['data']['placeholders'][ $group_slug ] ) )
$title = vsprintf( $title, $results['data']['placeholders'][ $group_slug ] );
}
echo '
' . $title . "
\n\n";
array_walk( $members, '_wp_credits_add_profile_link', $results['data']['profile_prefix'] );
shuffle( $members );
echo '
' . wp_sprintf( '%l.', $members ) . "
\n\n";
}
?>
Get involved in WordPress.' ),
/* translators: Url to the codex documentation on contributing to WordPress used on the credits page */
__( 'http://codex.wordpress.org/Contributing_to_WordPress' ) ); ?>