equal
deleted
inserted
replaced
8 |
8 |
9 /** WordPress Administration Bootstrap */ |
9 /** WordPress Administration Bootstrap */ |
10 require_once __DIR__ . '/admin.php'; |
10 require_once __DIR__ . '/admin.php'; |
11 require_once __DIR__ . '/includes/credits.php'; |
11 require_once __DIR__ . '/includes/credits.php'; |
12 |
12 |
|
13 // Used in the HTML title tag. |
13 $title = __( 'Credits' ); |
14 $title = __( 'Credits' ); |
14 |
15 |
15 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); |
16 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); |
16 |
17 |
17 require_once ABSPATH . 'wp-admin/admin-header.php'; |
18 require_once ABSPATH . 'wp-admin/admin-header.php'; |
26 <?php _e( 'Contributors' ); ?> |
27 <?php _e( 'Contributors' ); ?> |
27 </h1> |
28 </h1> |
28 </div> |
29 </div> |
29 |
30 |
30 <div class="about__header-text"> |
31 <div class="about__header-text"> |
31 <?php _e( 'WordPress 5.8 was created by a worldwide team of passionate individuals' ); ?> |
32 <?php |
|
33 printf( |
|
34 /* translators: %s: Version number. */ |
|
35 __( 'WordPress %s was created by a worldwide team of passionate individuals' ), |
|
36 $display_version |
|
37 ); |
|
38 ?> |
32 </div> |
39 </div> |
33 |
40 |
34 <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> |
41 <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> |
35 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> |
42 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> |
36 <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> |
43 <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> |