<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<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>&#34; WordPress Your Life&#34;</description>
	<lastBuildDate>Wed, 18 Jan 2012 22:09:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<!-- podcast_generator="Blubrry PowerPress/2.0.4" -->
	<itunes:summary>&quot; WordPress Your Life&quot;</itunes:summary>
	<itunes:author>Kevin S Brown</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://kevinsbrown.com/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>&quot; WordPress Your Life&quot;</itunes:subtitle>
	<image>
		<title>Kevin S Brown &#187; wordpress how to</title>
		<url>http://kevinsbrown.com/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://kevinsbrown.com</link>
	</image>
		<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>Kevin</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 [...]]]></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 <strong>functions.php</strong> file. It&#8217;s the <span style="text-decoration: underline;">3rd line below</span>, 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 <strong>footer.php</strong> 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</strong></p>
<p>Add these div styles to your <strong>style.css</strong> file.<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;
width:900px;
margin: 0 auto;
text-align:center;
}
#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>8</slash:comments>
		</item>
	</channel>
</rss>

