<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP First Aid &#187; settings</title>
	<atom:link href="http://wpfirstaid.com/tag/settings/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpfirstaid.com</link>
	<description>It&#039;s WordPress ... anything is possible!</description>
	<lastBuildDate>Tue, 17 Jan 2012 16:47:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress 3.0 Navigation Menu Styles</title>
		<link>http://wpfirstaid.com/2010/03/wordpress-3-0-navigation-menu-styles/</link>
		<comments>http://wpfirstaid.com/2010/03/wordpress-3-0-navigation-menu-styles/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 14:19:05 +0000</pubDate>
		<dc:creator>The Doctor</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[register_sidebar]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp_nav_menu]]></category>

		<guid isPermaLink="false">http://wpfirstaid.com/?p=418</guid>
		<description><![CDATA[A list of WordPress version 3.0 Navigation Menu default widget, and wp_nav_menu() function, generated CSS style elements.]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s jump right in &#8230;</p>
<p>Using the default definition from the <em><a href="http://codex.wordpress.org/Function_Reference/register_sidebar">register_sidebar()</a></em> function found in <em>../wp-includes/widgets.php</em> of WordPress version <del>3.0-alpha</del> 3.0-beta1<sup>2</sup> (see below):</p>
<pre class="brush: php; first-line: 551; title: ; notranslate">
	$defaults = array(
		'name' =&gt; sprintf(__('Sidebar %d'), $i ),
		'id' =&gt; &quot;sidebar-$i&quot;,
		'description' =&gt; '',
		'before_widget' =&gt; '&lt;li id=&quot;%1$s&quot; class=&quot;widget %2$s&quot;&gt;',
		'after_widget' =&gt; &quot;&lt;/li&gt;\n&quot;,
		'before_title' =&gt; '&lt;h2 class=&quot;widgettitle&quot;&gt;',
		'after_title' =&gt; &quot;&lt;/h2&gt;\n&quot;,
	);
</pre>
<p>&#8230; and the default Navigation Menu widget, the following CSS style elements are generated:</p>
<ul>
<li>#nav-menu-&lt;widget instance></li>
<li>.widget</li>
<li>.widget_nav_menu</li>
<li>.widgettitle</li>
</ul>
<p>&#8230; with these elements generated specifically by the <em><a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">wp_nav_menu()</a></em> function found in <em>../wp-includes/default-widgets.php</em> of WordPress version <del>3.0-alpha</del> 3.0-beta1<sup>2</sup>:</p>
<ul>
<li>.menu-&lt;menu name>-container<sup>2</sup></li>
<li>#menu-&lt;menu name></li>
<li>.menu</li>
<li>#menu-item-&lt;unique identifier*></li>
<li><del>.menu-item-type-&lt;types: page, category, Custom></del><sup>1</sup></li>
<li>.menu-item<sup>2</sup></li>
<li>.menu-item-type-&lt;post_type, custom, or taxonomy><sup>2</sup></li>
<li>.menu-item-object-&lt;page, or category><sup>2</sup></li>
<li>.current_page_item</li>
<li>.sub-menu<sup>1</sup></li>
</ul>
<p>This is just an initial listing of my observations as of the March 16, 2010 3.0-alpha version of WordPress. Look for future updates; and, please feel free to make note of your own observations below.</p>
<p><em>Bonus</em> &#8211; A suggested addition to style.css for theme developers:</p>
<pre class="brush: css; title: ; notranslate">
/* WordPress 3.0 Navigation Menu default widget */
.widget_nav_menu .menu {margin: 0;}
.widget_nav_menu .menu li {
  display: block;
  float: none;
  /* text-align: left; */
}
</pre>
<div class="nota-bene"><abbr title="Nota Bene">*N.B.</abbr> &#8211; each new menu item generates its own post ID in the WordPress database &#8216;posts&#8217; table. This appears to be in a similar fashion to post revisions.</div>
<div class="footnote">
<ol>Notes:</p>
<li>Mar 21, 2010
<ul>
<li>menu item type class further defined</li>
<li>sub-menu class noted</li>
</ul>
</li>
<li>Apr 15, 2010 (3.0-beta1 updates)
<ul>
<li>additional menu classes defined and/or modified</li>
<li>new menu container class noted</li>
</ul>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://wpfirstaid.com/2010/03/wordpress-3-0-navigation-menu-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plugin Installation</title>
		<link>http://wpfirstaid.com/2009/12/plugin-installation/</link>
		<comments>http://wpfirstaid.com/2009/12/plugin-installation/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 18:57:43 +0000</pubDate>
		<dc:creator>The Doctor</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[option panel]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpfirstaid.com/?p=167</guid>
		<description><![CDATA[Installing a WordPress plugin with step-by-step instructions and pictures.]]></description>
			<content:encoded><![CDATA[<p>To install a WordPress plugin is in most cases fairly straight forward but if you have never installed one before the first time can be a bit awkward. Lets install two plugins with these step-by-step instructions.</p>
<p>First, you will need to be logged into your administration pages. This should be a familiar process. Remember this?</p>
<div id="attachment_168" class="wp-caption aligncenter" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/login.png"><img class="size-medium wp-image-168" title="Login" src="http://wpfirstaid.com/wp-content/uploads/2009/12/login-300x290.png" alt="" height="290" width="300"></a><p class="wp-caption-text">The typical WordPress login form</p></div>
<p>Next, on the left hand side of your screen you should see your administration pages menu. It will looks very much like this.</p>
<div id="attachment_170" class="wp-caption aligncenter" style="width: 144px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/menu.png"><img class="size-medium wp-image-170" title="Menu" src="http://wpfirstaid.com/wp-content/uploads/2009/12/menu-134x300.png" alt="" height="300" width="134"></a><p class="wp-caption-text">The admin. menu</p></div>
<p>To install a new plugin there are essentially two methods that can be done from these administration pages. Both methods make use of the menu at the top of the &#8220;Install Plugins&#8221; page. Here is a screen snippet of the page:</p>
<div id="attachment_175" class="wp-caption aligncenter" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/install.png"><img class="size-medium wp-image-175" title="Install Plugins" src="http://wpfirstaid.com/wp-content/uploads/2009/12/install-300x89.png" alt="" height="89" width="300"></a><p class="wp-caption-text">A screen snippet of the Install Plugins page. Click to enlarge. Click back to return.</p></div>
<p>Let&#8217;s look at the upload method first. This method only works for plugins you have downloaded to your local computer. Click on the upload link at the top of the Install Plugins page and you should see something like this on your screen:</p>
<div id="attachment_178" class="wp-caption aligncenter" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/upload.png"><img class="size-medium wp-image-178" title="Upload Browser" src="http://wpfirstaid.com/wp-content/uploads/2009/12/upload-300x133.png" alt="" height="133" width="300"></a><p class="wp-caption-text">Click on the Browse button to open the file browser for your computer.</p></div>
<p>Next, locate the plugin zip file on your local computer. In this example we will use a <a href="http://buynowshop.com/2009/10/modified-facebook-sharecount-plugin/">modified version</a> of the <a href="http://www.fbshare.me/">Facebook Sharecount</a> plugin by <a href="http://thesnowballfactory.com/">Snowball Factory, Inc.</a> Your screen may look something like this:</p>
<div id="attachment_180" class="wp-caption aligncenter" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/file.png"><img class="size-medium wp-image-180" title="File Browser" src="http://wpfirstaid.com/wp-content/uploads/2009/12/file-300x236.png" alt="" height="236" width="300"></a><p class="wp-caption-text">An example of locating a plugin zip file</p></div>
<p>Click the &#8220;Open&#8221; button (see example image above). This will populate the field on the Install Plugins page under uploads. Click the &#8220;Install Now&#8221; button. The next step is <a href="#activate-plugin">activating the plugin</a> which we will look at in a moment, after going through the steps to use the &#8220;Search&#8221; method(s). The &#8220;Featured&#8221;, &#8220;Popular&#8221;, &#8220;Newest&#8221;, and &#8220;Recently Updated&#8221; options are simply pre-configured special &#8220;Search&#8221; criteria. Here is a screen snippet:</p>
<div id="attachment_184" class="wp-caption aligncenter" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/search.png"><img class="size-medium wp-image-184" title="Search Results" src="http://wpfirstaid.com/wp-content/uploads/2009/12/search-300x118.png" alt="" height="118" width="300"></a><p class="wp-caption-text">Large Image. The results for searching on the term: Support. Click to enlarge. Click back to return.</p></div>
<p>Locate the plugin you are interested in using, for this example we will look at the <a href="http://buynowshop.com/plugins/bns-support/">BNS Support</a> plugin. The plugin name itself will link to the page the plugin author has designated, the link to the far right will start the installation process. Clicking on the &#8220;install&#8221; link will open a pop-up style interface, very similar if not identical to this one:</p>
<div id="attachment_186" class="wp-caption aligncenter" style="width: 244px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/install_now.png"><img src="http://wpfirstaid.com/wp-content/uploads/2009/12/install_now-234x300.png" alt="" title="Install Now" class="size-medium wp-image-186" height="300" width="234"></a><p class="wp-caption-text">The install now pop-up window</p></div>
<p>Clicking the big red &#8220;Install Now&#8221; button will display a screen with information like this:</p>
<div id="activate-plugin"></div>
<p><div id="attachment_188" class="wp-caption alignleft" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/activate.png"><img src="http://wpfirstaid.com/wp-content/uploads/2009/12/activate-300x137.png" alt="" title="Activate" class="size-medium wp-image-188" height="137" width="300"></a><p class="wp-caption-text">After the plugin is installed it needs to be activated.</p></div> <div id="attachment_192" class="wp-caption alignright" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/manage.png"><img src="http://wpfirstaid.com/wp-content/uploads/2009/12/manage-300x267.png" alt="" title="Manage Plugins" class="size-medium wp-image-192" height="267" width="300"></a><p class="wp-caption-text">An example of the Manage Plugins page after plugin activation.</p></div></p>
<div class="clear"></div>
<p>Some plugins offer functionality simply with their activation, for example the <a href="http://buynowshop.com/plugins/bns-login/">BNS Login</a> plugin, other plugins require they are placed in a widget area of the theme. To add a plugin to one of these widget areas, you will need to click on Appearance, then click on Widgets; and, the Available Widgets page should be displayed. It will have a similar look to this example:</p>
<div id="attachment_195" class="wp-caption aligncenter" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/widgets.png"><img src="http://wpfirstaid.com/wp-content/uploads/2009/12/widgets-300x132.png" alt="" title="Available Widgets" class="size-medium wp-image-195" height="132" width="300"></a><p class="wp-caption-text">Large Image. An example of possible available widgets. Click to enlarge. Click back to return.</p></div>
<p>To use the plugin, drag-and-drop its title bar into an open widget area. Widget areas are theme dependent. If the widget area you want to use is not &#8220;open&#8221; first click on the small triangle on the right side of the widget area title. Now you can drag-and-drop the plugin title bar there. As you drag the plugin into the widget area, an outline of the plugin title bar will appear showing the plugin can be dropped. Once the plugin has been dropped into a widget area, if it exists, the plugin option menu will pop open. Similar to these next screen snippets:</p>
<p><div id="attachment_198" class="wp-caption alignleft" style="width: 200px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/drop.png"><img src="http://wpfirstaid.com/wp-content/uploads/2009/12/drop-190x300.png" alt="" title="Drop Zone" class="size-medium wp-image-198" height="300" width="190"></a><p class="wp-caption-text">A plugin being dragged into a widget area.</p></div> <div id="attachment_199" class="wp-caption alignright" style="width: 226px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/option.png"><img src="http://wpfirstaid.com/wp-content/uploads/2009/12/option-216x300.png" alt="" title="Plugin Option menu" class="size-medium wp-image-199" height="300" width="216"></a><p class="wp-caption-text">Once dropped, the plugin will pop open its option menu.</p></div></p>
<div class="clear"></div>
<p>Some plugins have full pages to manage their options, either in addition or as their only method of control. This is more common for plugins that do not need or have use of being placed in a widget area. These option pages are generally placed in the admin menu at the author&#8217;s discretion. The most common area to find the plugin settings page is under &#8230; Settings, as this example shows:</p>
<div id="attachment_201" class="wp-caption aligncenter" style="width: 310px"><a href="http://wpfirstaid.com/wp-content/uploads/2009/12/settings.png"><img src="http://wpfirstaid.com/wp-content/uploads/2009/12/settings-300x292.png" alt="" title="Settings" class="size-medium wp-image-201" height="292" width="300"></a><p class="wp-caption-text">A common place to find plugin settings pages is under the admin Settings.</p></div>
<p>Now you can return to your home page and see your newly installed, and configured, plugin. Congratulations!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfirstaid.com/2009/12/plugin-installation/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Change the WordPress Tagline</title>
		<link>http://wpfirstaid.com/2009/12/change-the-wordpress-tagline/</link>
		<comments>http://wpfirstaid.com/2009/12/change-the-wordpress-tagline/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 17:27:03 +0000</pubDate>
		<dc:creator>The Doctor</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[bloginfo]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[tagline]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpfirstaid.com/?p=144</guid>
		<description><![CDATA[How to change the WordPress Tagline / Description and what makes it work.]]></description>
			<content:encoded><![CDATA[<p>I have noticed on many blogs the description usually found under the blog title is:</p>
<blockquote><p>Just another WordPress weblog</p></blockquote>
<p>This may be the case, or it may not, but for the most part this tagline can be customized to better suit the blog itself. It is just a matter of making a change in the Settings of the blog; and, it is this easy:</p>
<ol>
<li>Log into your Dashboard (admin pages)</li>
<li>Click on the Settings option, which defaults to display the General Settings</li>
<li>Beside &#8220;Tagline&#8221;, in the box, type what you want your new blog description to be</li>
<li>Scroll to the bottom of the page and click the &#8220;Save Changes&#8221; button</li>
</ol>
<p>That&#8217;s it! Your blog is no longer &#8220;Just another WordPress weblog&#8221;, it is your weblog now!</p>
<hr />
<h3><em>Bonus:</em></h3>
<p>How does WordPress display the Tagline?<br />
Most themes display the blog description with something similar to the following code:</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php bloginfo( 'description' ) ?&gt;</pre>
<p>Now, if you do not want to display your blog&#8217;s description you can do one of the two following things:</p>
<ol>
<li>Go into your Settings and clear the text from the Tagline box, or</li>
<li>Go into your theme&#8217;s code and using the &#8216;//&#8217; for commenting, make a change like this:
<pre class="brush: plain; title: ; notranslate">&lt;?php // bloginfo( 'description' ) ?&gt;</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://wpfirstaid.com/2009/12/change-the-wordpress-tagline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

