diff --git a/wp-admin/themes.php b/wp-admin/themes.php index ae8fc4fe8..66fd5beb1 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -29,8 +29,10 @@ $title = __('Manage Themes'); $parent_file = 'themes.php'; $help = '

' . __('Themes give your WordPress style. Once a theme is installed, you may preview it, activate it or deactivate it here.') . '

'; -$help .= '

' . sprintf(__('You can find additional themes for your site by using the new Theme Browser/Installer functionality or by browsing the WordPress Theme Directory directly and installing manually. To install a theme manually, upload its ZIP archive with the new uploader or copy its folder via FTP into your wp-content/themes directory.'), 'theme-install.php', 'theme-install.php?tab=upload' ) . '

'; -$help .= '

' . __('Once a theme is uploaded, you should see it on this page.') . '

' ; +if ( current_user_can('install_themes') ) { + $help .= '

' . sprintf(__('You can find additional themes for your site by using the new Theme Browser/Installer functionality or by browsing the WordPress Theme Directory directly and installing manually. To install a theme manually, upload its ZIP archive with the new uploader or copy its folder via FTP into your wp-content/themes directory.'), 'theme-install.php', 'theme-install.php?tab=upload' ) . '

'; + $help .= '

' . __('Once a theme is uploaded, you should see it on this page.') . '

' ; +} add_contextual_help('themes', $help);