<?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>Kevin S Brown &#187; wordpress how to</title>
	<atom:link href="http://kevinsbrown.com/tag/wordpress-how-to/feed" rel="self" type="application/rss+xml" />
	<link>http://kevinsbrown.com</link>
	<description>My Personal Blog - Built with WordPress - Mainly about WordPress</description>
	<lastBuildDate>Mon, 23 Aug 2010 17:36:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add Widgets To Your WordPress Footer &#8211; Easy How To Guide</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html</link>
		<comments>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comments</comments>
		<pubDate>Sat, 26 Dec 2009 20:14:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[footer widgets]]></category>
		<category><![CDATA[widget area]]></category>
		<category><![CDATA[wordpress how to]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=92</guid>
		<description><![CDATA[I&#8217;ve been noticing that WordPress blogs with widgetized footers, help ME when I visit to find other interesting posts on the blog.
Without widgets in the footer, you know the problem &#8230; You read a good post, get to the bottom of the page, then wonder where to go next.
BUT, if the page footer contains widgets, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been noticing that WordPress blogs with widgetized footers, help ME when I visit to find other interesting posts on the blog.</p>
<p>Without widgets in the footer, you know the problem &#8230; You read a good post, get to the bottom of the page, then wonder where to go next.</p>
<p>BUT, if the page footer contains widgets, chances are you will immediately see other post titles or enticing comments, which help you to find other posts you may enjoy.</p>
<p>So having realized this from my own blog reading behavior, I thought I really should put widgets in my own footer, here at KevinSBrown.com</p>
<p>I&#8217;ve just done it and you can see the new widgets in the footer here (if you page down). I have added three side by side widget areas to the footer.</p>
<p>So having worked it out, I think I should share my &#8220;easy how-to guide&#8221; to widgetizing your WordPress footer. </p>
<p>Here goes&#8230;</p>
<p><strong>STEP 1: Tell WordPress you want to use three more widget positions, and they should be called &#8220;footer 1&#8243;, &#8220;footer 2&#8243; and &#8220;footer 3&#8243;)</strong></p>
<p>Use the theme editor for your current theme, to add an extra line of code to the functions.php file (it&#8217;s the 3rd line below, beginning register_sidebars(3,array&#8230;</p>
<blockquote><pre><code>if ( function_exists('register_sidebar') )
    register_sidebar();
    register_sidebars(3, array('name'=&gt;'Footer %d'));</code></pre>
</blockquote>
<p><strong>STEP 2:  Add the extra widget positions to your theme&#8217;s footer</strong></p>
<p>Again using the theme editor, add this to your footer.php file&#8230;</p>
<blockquote><pre><code>&lt;div id="footerwidgets"&gt;  
  &lt;div id="footer-left"&gt;               
    &lt;ul&gt;      
&lt;?php if ( !function_exists('dynamic_sidebar') 
   || !dynamic_sidebar('footer 1') ) : ?&gt; &lt;li&gt;                                                                                     
      &lt;?php endif; ?&gt;                
    &lt;/ul&gt;    
  &lt;/div&gt;   
  &lt;div id="footer-middle"&gt;               
    &lt;ul&gt;        
&lt;?php if ( !function_exists('dynamic_sidebar') 
   || !dynamic_sidebar('footer 2') ) : ?&gt; &lt;li&gt;                                                                                   
      &lt;?php endif; ?&gt;                
    &lt;/ul&gt;    
  &lt;/div&gt;    
  &lt;div id="footer-right"&gt;               
    &lt;ul&gt;       
&lt;?php if ( !function_exists('dynamic_sidebar') 
   || !dynamic_sidebar('footer 3') ) : ?&gt; &lt;li&gt;                                                                                  
      &lt;?php endif; ?&gt;                
    &lt;/ul&gt;    
  &lt;/div&gt;
&lt;/div&gt; 
&lt;br /&gt; &lt;br clear="all"&gt;</code></pre>
</blockquote>
<p><strong>STEP 3: Style the new footer divs, by adding div styles to your style.css file</strong><br />
(note: you will probably need to adjust the width parameters and other style elements, to suit your particular theme)</p>
<blockquote><pre><code>/* Footer Widgets */
#footerwidgets {
	display: block;
}
#footer-left {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 30px;
	padding: 10px;
	background-color: #f3f3e7;
}
#footer-middle {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 15px;
	padding: 10px;
	background-color: #f3f3e7;
}
#footer-right {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 15px;
	padding: 10px;
	background-color: #f3f3e7;
}</code></pre>
</blockquote>
<p>I hope that helps.  You will need to adjust to your particular theme and requirements, but that is exactly what I have just done here and you can see the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
