diff --git a/wp-admin/network/site-info.php b/wp-admin/network/site-info.php
index f27956e974..96d043eb09 100644
--- a/wp-admin/network/site-info.php
+++ b/wp-admin/network/site-info.php
@@ -18,7 +18,7 @@ if ( ! current_user_can('manage_sites') )
add_contextual_help($current_screen,
'
' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '
' .
- '' . __('Info The domain and path are rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as Archived, Spammed, Deleted and Mature, to remove from public listings or disable.') . '
' .
+ '' . __('Info - The domain and path are rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as Archived, Spammed, Deleted and Mature, to remove from public listings or disable.') . '
' .
'' . __('See the contextual help on the next tab. ') . '
' .
'' . __('For more information:') . '
' .
'' . __('Documentation on Network Settings') . '
' .
@@ -89,8 +89,12 @@ require('../admin-header.php');
array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'),
- 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php'));
+$tabs = array(
+ 'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
+ 'site-users' => array( 'label' => __( 'Users' ), 'url' => 'site-users.php' ),
+ 'site-themes' => array( 'label' => __( 'Themes' ), 'url' => 'site-themes.php' ),
+ 'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ),
+);
foreach ( $tabs as $tab_id => $tab ) {
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
echo '' . esc_html( $tab['label'] ) . '';
diff --git a/wp-admin/network/site-options.php b/wp-admin/network/site-settings.php
similarity index 87%
rename from wp-admin/network/site-options.php
rename to wp-admin/network/site-settings.php
index 71fd29b4cd..f9b85db0ec 100644
--- a/wp-admin/network/site-options.php
+++ b/wp-admin/network/site-settings.php
@@ -1,6 +1,6 @@
' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '' .
- '
' . __('Options This page shows a list of all options associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the option is stored in the database.') . '
' .
+ '' . __('Settings - This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.') . '
' .
'' . __('See the contextual help on the next tab. ') . '
' .
'' . __('For more information:') . '
' .
'' . __('Documentation on Network Settings') . '
' .
@@ -79,8 +79,12 @@ require('../admin-header.php');
array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'),
- 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php'));
+$tabs = array(
+ 'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
+ 'site-users' => array( 'label' => __( 'Users' ), 'url' => 'site-users.php' ),
+ 'site-themes' => array( 'label' => __( 'Themes' ), 'url' => 'site-themes.php' ),
+ 'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ),
+);
foreach ( $tabs as $tab_id => $tab ) {
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
echo '' . esc_html( $tab['label'] ) . '';
diff --git a/wp-admin/network/site-themes.php b/wp-admin/network/site-themes.php
index 6fd7abd46d..961017433c 100644
--- a/wp-admin/network/site-themes.php
+++ b/wp-admin/network/site-themes.php
@@ -125,8 +125,12 @@ require('../admin-header.php'); ?>
array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'),
- 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php'));
+$tabs = array(
+ 'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
+ 'site-users' => array( 'label' => __( 'Users' ), 'url' => 'site-users.php' ),
+ 'site-themes' => array( 'label' => __( 'Themes' ), 'url' => 'site-themes.php' ),
+ 'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ),
+);
foreach ( $tabs as $tab_id => $tab ) {
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
echo '' . esc_html( $tab['label'] ) . '';
diff --git a/wp-admin/network/site-users.php b/wp-admin/network/site-users.php
index fcebf7ca57..b9e4726ae5 100644
--- a/wp-admin/network/site-users.php
+++ b/wp-admin/network/site-users.php
@@ -24,7 +24,7 @@ $action = $wp_list_table->current_action();
add_contextual_help($current_screen,
'
' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '
' .
- '' . __('Users This displays the users associated with this site. You can also change their role, reset their passowrd, or remove them from the site. Removing the user from the site does not remove the user from the network. ') . '
' .
+ '' . __('Users - This displays the users associated with this site. You can also change their role, reset their passowrd, or remove them from the site. Removing the user from the site does not remove the user from the network. ') . '
' .
'' . __('See the contextual help on the next tab. ') . '
' .
'' . __('For more information:') . '
' .
'' . __('Documentation on Network Settings') . '
' .
@@ -163,8 +163,12 @@ require('../admin-header.php'); ?>
array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'),
- 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php'));
+$tabs = array(
+ 'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ),
+ 'site-users' => array( 'label' => __( 'Users' ), 'url' => 'site-users.php' ),
+ 'site-themes' => array( 'label' => __( 'Themes' ), 'url' => 'site-themes.php' ),
+ 'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ),
+);
foreach ( $tabs as $tab_id => $tab ) {
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
echo '' . esc_html( $tab['label'] ) . '';