<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[14951] trunk/wp-admin: Help for Appearance screens.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14951">14951</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-05-26 18:27:13 +0000 (Wed, 26 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Help for Appearance screens. Props duck_, jane. see <a href="http://trac.wordpress.org/ticket/13467">#13467</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminnavmenusphp">trunk/wp-admin/nav-menus.php</a></li>
<li><a href="#trunkwpadminthemeeditorphp">trunk/wp-admin/theme-editor.php</a></li>
<li><a href="#trunkwpadminthemeinstallphp">trunk/wp-admin/theme-install.php</a></li>
<li><a href="#trunkwpadminthemesphp">trunk/wp-admin/themes.php</a></li>
<li><a href="#trunkwpadminwidgetsphp">trunk/wp-admin/widgets.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminnavmenusphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/nav-menus.php (14950 => 14951)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/nav-menus.php        2010-05-26 17:47:29 UTC (rev 14950)
+++ trunk/wp-admin/nav-menus.php        2010-05-26 18:27:13 UTC (rev 14951)
</span><span class="lines">@@ -435,6 +435,15 @@
</span><span class="cx"> 
</span><span class="cx"> wp_initial_nav_menu_meta_boxes();
</span><span class="cx"> 
</span><ins>+$help = '&lt;p&gt;' . __('This feature is new in version 3.0; to use a custom menu in place of your theme&amp;#8217;s default menus, support for this feature must be registered in the theme&amp;#8217;s functions.php file. If your theme does not support the custom menus feature yet (the new default theme Twenty Ten, does), you can learn about adding support yourself by following the below link.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('You can create custom menus for your site. These menus may contain links to pages, categories, custom links or other content types (use the Screen Options tab to decide which ones to show on the screen). You can specify a different navigation label for a menu item as well as other attributes. You can create multiple menus. If your theme includes more than one menu, you can choose which custom menu to associate with each. You can also use custom menus in conjunction with the Custom Menus widget.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('To create a new custom menu, click on the + tab, give the menu a name, and click Create Menu. Next, add menu items from the appropriate boxes. You&amp;#8217;ll be able to edit the information for each menu item, and can drag and drop to put them in order. You can also drag a menu item a little to the right to make it a submenu, to create menus with hierarchy. You&amp;#8217;ll see when the position of the drop target shifts over to create the nested placement. Don&amp;#8217;t forget to click Save when you&amp;#8217;re finished.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('&lt;strong&gt;For more information:&lt;/strong&gt;') . '&lt;/p&gt;'; 
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Menus Documentation&lt;/a&gt;'), 'http://codex.wordpress.org/Appearance_Menus_SubPanel') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Support Forums&lt;/a&gt;'), 'http://wordpress.org/support/') . '&lt;/p&gt;';
+
+add_contextual_help($current_screen, $help);
+
</ins><span class="cx"> // Get the admin header
</span><span class="cx"> require_once( 'admin-header.php' );
</span><span class="cx"> ?&gt;
</span></span></pre></div>
<a id="trunkwpadminthemeeditorphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/theme-editor.php (14950 => 14951)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/theme-editor.php        2010-05-26 17:47:29 UTC (rev 14950)
+++ trunk/wp-admin/theme-editor.php        2010-05-26 18:27:13 UTC (rev 14951)
</span><span class="lines">@@ -15,6 +15,20 @@
</span><span class="cx"> $title = __(&quot;Edit Themes&quot;);
</span><span class="cx"> $parent_file = 'themes.php';
</span><span class="cx"> 
</span><ins>+$help = '&lt;p&gt;' . __('You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('Begin by choosing a theme to edit from the dropdown menu and clicking Select. A list then appears of all the template files. Clicking once on any file name causes the file to appear in the large Editor box.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Lookup takes you to a web page with reference material about that particular function.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('After typing in your edits, click Update File.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('&lt;strong&gt;Advice:&lt;/strong&gt; think very carefully about your site crashing if you are live-editing the theme currently in use.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a &lt;a href=&quot;%s&quot;&gt;child theme&lt;/a&gt; instead.'), 'http://codex.wordpress.org/Child_Themes') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('&lt;strong&gt;For more information:&lt;/strong&gt;') . '&lt;/p&gt;'; 
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Theme Development Documentation&lt;/a&gt;'), 'http://codex.wordpress.org/Theme_Development') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Documentation on Using Themes&lt;/a&gt;'), 'http://codex.wordpress.org/Using_Themes') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Documentation on Editing Files&lt;/a&gt;'), 'http://codex.wordpress.org/Editing_Files') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Template Tags Documentation&lt;/a&gt;'), 'http://codex.wordpress.org/Template_Tags') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Support Forums&lt;/a&gt;'), 'http://wordpress.org/support/') . '&lt;/p&gt;';
+add_contextual_help($current_screen, $help);
+
</ins><span class="cx"> wp_reset_vars(array('action', 'redirect', 'profile', 'error', 'warning', 'a', 'file', 'theme', 'dir'));
</span><span class="cx"> 
</span><span class="cx"> wp_admin_css( 'theme-editor' );
</span></span></pre></div>
<a id="trunkwpadminthemeinstallphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/theme-install.php (14950 => 14951)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/theme-install.php        2010-05-26 17:47:29 UTC (rev 14950)
+++ trunk/wp-admin/theme-install.php        2010-05-26 18:27:13 UTC (rev 14951)
</span><span class="lines">@@ -53,7 +53,13 @@
</span><span class="cx"> 
</span><span class="cx"> do_action('install_themes_pre_' . $tab); //Used to override the general interface, Eg, install or theme information.
</span><span class="cx"> 
</span><del>-add_contextual_help($current_screen, plugins_search_help());
</del><ins>+$help = '&lt;p&gt;' . __('You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress.org theme repository. These themes are designed and developed by third parties, are available free of charge, and are licensed under the GNU General Public License, version 2, just like WordPress.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter. Alternately, you can browse the themes that are Featured, Newest, or Recently Updated. When you find a theme you like, you can preview it or install it.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme&amp;#8217;s folder via FTP into your wp-content/themes directory.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('&lt;strong&gt;For more information:&lt;/strong&gt;') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Documentation on Using Themes&lt;/a&gt;'), 'http://codex.wordpress.org/Using_Themes#Adding_New_Themes') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Support Forums&lt;/a&gt;'), 'http://wordpress.org/support/') . '&lt;/p&gt;';
+add_contextual_help($current_screen, $help);
</ins><span class="cx"> 
</span><span class="cx"> include('./admin-header.php');
</span><span class="cx"> ?&gt;
</span></span></pre></div>
<a id="trunkwpadminthemesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/themes.php (14950 => 14951)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/themes.php        2010-05-26 17:47:29 UTC (rev 14950)
+++ trunk/wp-admin/themes.php        2010-05-26 18:27:13 UTC (rev 14951)
</span><span class="lines">@@ -33,12 +33,14 @@
</span><span class="cx"> 
</span><span class="cx"> if ( current_user_can( 'switch_themes' ) ) :
</span><span class="cx"> 
</span><del>-$help = '&lt;p&gt;' . __('Themes give your WordPress style. Once a theme is installed, you may preview it, activate it or deactivate it here.') . '&lt;/p&gt;';
-if ( current_user_can('install_themes') ) {
-        $help .= '&lt;p&gt;' . sprintf(__('You can find additional themes for your site by using the new &lt;a href=&quot;%1$s&quot;&gt;Theme Browser/Installer&lt;/a&gt; functionality or by browsing the &lt;a href=&quot;http://wordpress.org/extend/themes/&quot;&gt;WordPress Theme Directory&lt;/a&gt; directly and installing manually.  To install a theme &lt;em&gt;manually&lt;/em&gt;, &lt;a href=&quot;%2$s&quot;&gt;upload its ZIP archive with the new uploader&lt;/a&gt; or copy its folder via FTP into your &lt;code&gt;wp-content/themes&lt;/code&gt; directory.'), 'theme-install.php', 'theme-install.php?tab=upload' ) . '&lt;/p&gt;';
-        $help .= '&lt;p&gt;' . __('Once a theme is uploaded, you should see it on this screen.') . '&lt;/p&gt;' ;
-}
-
</del><ins>+$help = '&lt;p&gt;' . __('Aside from the default theme included with your WordPress installation, themes are designed and developed by third parties.') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . __('You can see your active theme at the top of the screen. Below are the other themes you have installed that are not currently in use. You can see what your site would look like with one of these themes by clicking the Preview link. To change themes, click the Activate link.') . '&lt;/p&gt;';
+if ( current_user_can('install_themes') )
+        $help .= '&lt;p&gt;' . sprintf(__('If you would like to see more themes to choose from, click on the &quot;Install Themes&quot; tab and you will be able to browse or search for additional themes from the &lt;a href=&quot;%s&quot;&gt;WordPress.org theme repository&lt;/a&gt;. Themes in the WordPress.org theme repository are designed and developed by third parties, and are licensed under the GNU General Public License, version 2, just like WordPress. Oh, and they&amp;#8217;re free!'), 'http://wordpress.org/extend/themes/') . '&lt;/p&gt;';
+        
+$help .= '&lt;p&gt;' . __('&lt;strong&gt;For more information:&lt;/strong&gt;') . '&lt;/p&gt;'; 
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Documentation on Using Themes&lt;/a&gt;'), 'http://codex.wordpress.org/Using_Themes') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Support Forums&lt;/a&gt;'), 'http://wordpress.org/support/') . '&lt;/p&gt;';
</ins><span class="cx"> add_contextual_help($current_screen, $help);
</span><span class="cx"> 
</span><span class="cx"> add_thickbox();
</span></span></pre></div>
<a id="trunkwpadminwidgetsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/widgets.php (14950 => 14951)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/widgets.php        2010-05-26 17:47:29 UTC (rev 14950)
+++ trunk/wp-admin/widgets.php        2010-05-26 18:27:13 UTC (rev 14951)
</span><span class="lines">@@ -34,11 +34,15 @@
</span><span class="cx"> $parent_file = 'themes.php';
</span><span class="cx"> 
</span><span class="cx"> $help = '
</span><del>-        &lt;p&gt;' . __('Widgets are added and arranged by simple drag &amp;#8217;n&amp;#8217; drop. If you hover your mouse over the titlebar of a widget, you&amp;#8217;ll see a 4-arrow cursor which indicates that the widget is movable.  Click on the titlebar, hold down the mouse button and drag the widget to a sidebar. As you drag, you&amp;#8217;ll see a dotted box that also moves. This box shows where the widget will go once you drop it.') . '&lt;/p&gt;
-        &lt;p&gt;' . __('To remove a widget from a sidebar, drag it back to Available Widgets or click on the arrow on its titlebar to reveal its settings, and then click Remove.') . '&lt;/p&gt;
-        &lt;p&gt;' . __('To remove a widget from a sidebar &lt;em&gt;and keep its configuration&lt;/em&gt;, drag it to Inactive Widgets.') . '&lt;/p&gt;
-        &lt;p&gt;' . __('The Inactive Widgets area stores widgets that are configured but not curently used. If you change themes and the new theme has fewer sidebars than the old, all extra widgets will be stored to Inactive Widgets automatically.') . '&lt;/p&gt;
</del><ins>+        &lt;p&gt;' . __('Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.') . '&lt;/p&gt;
+        &lt;p&gt;' . __('Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.') . '&lt;/p&gt;
+        &lt;p&gt;' . __('If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with less or different widget areas.') . '&lt;/p&gt;
+        &lt;p&gt;' . __('Widgets may be used multiple times. You can give each widget a title, to display on your site, but it&amp;#8217;s not required.') . '&lt;/p&gt;
+        &lt;p&gt;' . __('Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.') . '&lt;/p&gt;
</ins><span class="cx"> ';
</span><ins>+$help .= '&lt;p&gt;' . __('&lt;strong&gt;For more information:&lt;/strong&gt;') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Widgets Documentation&lt;/a&gt;'), 'http://codex.wordpress.org/Appearance_Widgets_SubPanel') . '&lt;/p&gt;';
+$help .= '&lt;p&gt;' . sprintf(__('&lt;a href=&quot;%s&quot;&gt;Support Forums&lt;/a&gt;'), 'http://wordpress.org/support/') . '&lt;/p&gt;';
</ins><span class="cx"> add_contextual_help($current_screen, $help);
</span><span class="cx"> 
</span><span class="cx"> // register the inactive_widgets area as sidebar
</span></span></pre>
</div>
</div>

</body>
</html>