diff --git a/wp-admin/network.php b/wp-admin/network.php index 463c99a6c..d58f054d1 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 328a1db22..55e6b2332 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 1ccba103e..3fa9245ae 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 6ee7af808..f16e498e8 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 3d012a8a6..22bb82ea7 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 c158b76c2..50a83ac23 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 2846c1ef9..8a2f85454 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 30a2f96a7..07b78e7a1 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 2e9f408c4..68951af90 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 45eec641b..9780e733a 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 29ac979fa..ba714487a 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 9b5827f67..661aa3ba6 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 836b2dbd9..74b856ee6 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 08fc66ff8..4e845ae40 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') . '

'