diff --git a/wp-admin/network.php b/wp-admin/network.php index 463c99a6c0..d58f054d12 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -112,7 +112,7 @@ add_contextual_help($current_screen, '

' . __('The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed soon in a future version.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Creating a Network') . '

' . '

' . __('Documentation on the Network Screen') . '

' . diff --git a/wp-admin/network/index.php b/wp-admin/network/index.php index 328a1db22a..55e6b2332b 100644 --- a/wp-admin/network/index.php +++ b/wp-admin/network/index.php @@ -29,7 +29,7 @@ add_contextual_help($current_screen, '

' . __('The Right Now box provides the network administrator with links to the screens to either create a new site or user, or to search existing users and sites. Screens for Sites and Users are also accessible through the left-hand navigation in the Network Admin section.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on the Network Admin') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php index 1ccba103e8..3fa9245aee 100644 --- a/wp-admin/network/settings.php +++ b/wp-admin/network/settings.php @@ -31,7 +31,7 @@ add_contextual_help( $current_screen, '

' . __('Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Network Settings') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/site-new.php b/wp-admin/network/site-new.php index 6ee7af8084..f16e498e84 100644 --- a/wp-admin/network/site-new.php +++ b/wp-admin/network/site-new.php @@ -21,7 +21,7 @@ add_contextual_help($current_screen, '

' . __('If the admin email for the new site does not exist in the database, a new user will also be created.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Site Management') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/site-users.php b/wp-admin/network/site-users.php index 3d012a8a66..22bb82ea78 100644 --- a/wp-admin/network/site-users.php +++ b/wp-admin/network/site-users.php @@ -27,7 +27,7 @@ add_contextual_help($current_screen, '

' . __('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.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Site Management') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/sites.php b/wp-admin/network/sites.php index c158b76c23..50a83ac23d 100644 --- a/wp-admin/network/sites.php +++ b/wp-admin/network/sites.php @@ -37,7 +37,7 @@ add_contextual_help($current_screen, '

' . __('Clicking on bold headings can re-sort this table.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Site Management') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/themes.php b/wp-admin/network/themes.php index 2846c1ef90..8a2f854544 100644 --- a/wp-admin/network/themes.php +++ b/wp-admin/network/themes.php @@ -209,7 +209,7 @@ add_contextual_help($current_screen, '

' . __('Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Network Themes') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/upgrade.php b/wp-admin/network/upgrade.php index 30a2f96a70..07b78e7a12 100644 --- a/wp-admin/network/upgrade.php +++ b/wp-admin/network/upgrade.php @@ -24,7 +24,7 @@ add_contextual_help($current_screen, '

' . __('If this process fails for any reason, users logging in to their sites will force the same update.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Update Network') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/user-new.php b/wp-admin/network/user-new.php index 2e9f408c42..68951af904 100644 --- a/wp-admin/network/user-new.php +++ b/wp-admin/network/user-new.php @@ -22,7 +22,7 @@ add_contextual_help($current_screen, '

' . __('Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Network Users') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/network/users.php b/wp-admin/network/users.php index 45eec641be..9780e733a7 100644 --- a/wp-admin/network/users.php +++ b/wp-admin/network/users.php @@ -238,7 +238,7 @@ add_contextual_help($current_screen, '

' . __('You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Network Users') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/plugin-editor.php b/wp-admin/plugin-editor.php index 29ac979fab..ba714487a2 100644 --- a/wp-admin/plugin-editor.php +++ b/wp-admin/plugin-editor.php @@ -118,7 +118,7 @@ default: ( is_network_admin() ? '

' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '

' : '' ) ); - get_current_screen()->add_help_sidebar( + get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Editing Plugins') . '

' . '

' . __('Documentation on Writing Plugins') . '

' . diff --git a/wp-admin/plugin-install.php b/wp-admin/plugin-install.php index 9b5827f671..661aa3ba64 100644 --- a/wp-admin/plugin-install.php +++ b/wp-admin/plugin-install.php @@ -42,7 +42,7 @@ add_contextual_help($current_screen, '

' . __('If you want to install a plugin that you’ve downloaded elsewhere, click Upload in the upper left. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.') . '

' ); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Installing Plugins') . '

' . '

' . __('Support Forums') . '

' diff --git a/wp-admin/theme-editor.php b/wp-admin/theme-editor.php index 836b2dbd90..74b856ee66 100644 --- a/wp-admin/theme-editor.php +++ b/wp-admin/theme-editor.php @@ -31,7 +31,7 @@ if ( is_network_admin() ) add_contextual_help($current_screen, $help); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Theme Development') . '

' . '

' . __('Documentation on Using Themes') . '

' . diff --git a/wp-admin/theme-install.php b/wp-admin/theme-install.php index 08fc66ff89..4e845ae402 100644 --- a/wp-admin/theme-install.php +++ b/wp-admin/theme-install.php @@ -44,7 +44,7 @@ $help .= '

' . __('You can Upload a theme manually if you have already downloa add_contextual_help($current_screen, $help); -get_current_screen()->add_help_sidebar( +get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Adding New Themes') . '

' . '

' . __('Support Forums') . '

'