<?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>BEN FORD</title>
	<atom:link href="http://benford.co.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://benford.co.nz</link>
	<description>Christchurch based website designer and wordpress guy</description>
	<lastBuildDate>Thu, 22 Mar 2012 07:13:58 +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>New Work</title>
		<link>http://benford.co.nz/new-work-2/</link>
		<comments>http://benford.co.nz/new-work-2/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 07:38:31 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://benford.co.nz/?p=51</guid>
		<description><![CDATA[Just finished a fun little project for Girl Guiding New Zealand. View the live site here.]]></description>
			<content:encoded><![CDATA[<p><a href="http://benford.co.nz/wp-content/uploads/2012/02/guidebiscuits.jpg"><img class="alignnone size-full wp-image-52" title="guidebiscuits" src="http://benford.co.nz/wp-content/uploads/2012/02/guidebiscuits.jpg" alt="" width="700" height="2796" /></a></p>
<p>Just finished a fun little project for Girl Guiding New Zealand. View the live site <a title="Guide Biscuits" href="http://www.guidebiscuits.org.nz/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://benford.co.nz/new-work-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress site: Socialjusticeweek.org.nz</title>
		<link>http://benford.co.nz/new-wordpress-site-socialjusticeweek-org-nz/</link>
		<comments>http://benford.co.nz/new-wordpress-site-socialjusticeweek-org-nz/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 03:34:04 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://benford.co.nz/?p=44</guid>
		<description><![CDATA[With the 2011 Rugby World Cup approaching fast, one of our clients &#8211; Caritas decided to compare the various countries participating  on a different scale than sporting ability &#8211; social equality&#8230; interesting results. Great artwork supplied and an open brief for the design, I&#8217;m pretty happy with the end result. You can view it here.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-47" title="level-with-me" src="http://benford.co.nz/wp-content/uploads/2011/09/level-with-me2.jpg" alt="" width="699" height="643" /></p>
<p>With the 2011 Rugby World Cup approaching fast, one of <a href="http://www.metasolutions.co.nz">our</a> clients &#8211; Caritas decided to compare the various countries participating  on a different scale than sporting ability &#8211; social equality&#8230; interesting results.</p>
<p>Great artwork supplied and an open brief for the design, I&#8217;m pretty happy with the end result.</p>
<p>You can view it <a href="http://socialjusticeweek.org.nz">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://benford.co.nz/new-wordpress-site-socialjusticeweek-org-nz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Widget Areas in WordPress</title>
		<link>http://benford.co.nz/multiple-widget-areas-in-wordpress/</link>
		<comments>http://benford.co.nz/multiple-widget-areas-in-wordpress/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 01:36:32 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://benford.co.nz/?p=36</guid>
		<description><![CDATA[As I develop more and more themes,  the benefits of using widgets are obviously apparent, not just when developing WordPress themes for a &#8216;pure&#8217; blog but as an easy way for clients to update websites when I have created more of a CMS theme for them. Plus many useful plugins come only in widget form, [...]]]></description>
			<content:encoded><![CDATA[<p>As I develop more and more themes,  the benefits of using widgets are obviously apparent, not just when developing WordPress themes for a &#8216;pure&#8217; blog but as an easy way for clients to update websites when I have created more of a CMS theme for them. Plus many useful plugins come only in widget form, rather than having the ability to insert code into templates.</p>
<p>The problem I came up against is many themes I have picked apart and analysed came with only one widget area. In reality you often need two or more widget enabled areas. Here for my future reference and yours is some code snippets that will easily allow you to have as many widget areas as you want or need.</p>
<p>The first file we want to look at is functions.php We want to register these widget enabled areas so they appear in the WordPress administration area. All we need to do is add the following code to our functions.php file</p>
<p>if ( function_exists(&#8216;register_sidebar&#8217;) ) {<br />
register_sidebar(array(&#8216;name&#8217;=&gt;&#8217;widget area&#8217;,<br />
&#8216;before_widget&#8217; =&gt; &#8216;&lt;li id=&#8221;%1$s&#8221;&gt;&#8217;,<br />
&#8216;after_widget&#8217; =&gt; &#8216;&lt;/li&gt;&#8217;,<br />
&#8216;before_title&#8217; =&gt; &#8216;&lt;h2&gt;&#8217;,<br />
&#8216;after_title&#8217; =&gt; &#8216;&lt;/h2&gt;&#8217;,<br />
));<br />
}</p>
<p>Where we have: register_sidebar(array(&#8216;name&#8217;=&gt;&#8217;widget area&#8217;,<br />
&#8216;widget area&#8217; is the name of our new widget. It could be &#8216;footer widget area&#8217;, it could be &#8216;banner adverts&#8217; whatever is appropriate.</p>
<p>You will see some html there as well to wrap our widget in, pretty straight forward.</p>
<p>Step two is as simple as opening up the template that you want this new widget area to appear on, locating the div you would  like it to appear and then pasting this code:</p>
<p>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;widget area&#8217;) ) : ?&gt;<br />
&lt;?php endif; ?&gt;</p>
<p>Again nice and straight forward, just replace &#8216;widget area&#8217; with the name of the widget area you created. Log into your WordPress dashboard and navigate to the widget area and customise away. After that it is just a case of rinse and repeat, add as many individually named widget areas as you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://benford.co.nz/multiple-widget-areas-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soundtrack Part 1</title>
		<link>http://benford.co.nz/soundtrack-part-1/</link>
		<comments>http://benford.co.nz/soundtrack-part-1/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 09:27:25 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://benford.co.nz/?p=34</guid>
		<description><![CDATA[LIQUID STRANGER &#8211; SHORT FUSE MIX by Liquid Stranger Among the various things I have listened to while making this site.]]></description>
			<content:encoded><![CDATA[<p><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F1224890"></param><param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F1224890" type="application/x-shockwave-flash" width="100%"></embed></object>  <span><a href="http://soundcloud.com/liquid-stranger-1/liquid-stranger-short-fuse-mix">LIQUID STRANGER &#8211; SHORT FUSE MIX</a> by <a href="http://soundcloud.com/liquid-stranger-1">Liquid Stranger</a></span> </p>
<p>Among the various things I have listened to while making this site. </p>
]]></content:encoded>
			<wfw:commentRss>http://benford.co.nz/soundtrack-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Work</title>
		<link>http://benford.co.nz/new-work/</link>
		<comments>http://benford.co.nz/new-work/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 08:58:57 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://benford.co.nz/?p=26</guid>
		<description><![CDATA[This was a great project with a great client. A custom wordpress theme with all the bells and whistles including the ability to change between Spanish and English versions and a pretty sweet drop down menu. View the site here.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-27" title="castromartin" src="http://benford.co.nz/wp-content/uploads/2011/08/castromartin.jpg" alt="" width="699" height="531" /></p>
<p>This was a great project with a great client. A custom wordpress theme with all the bells and whistles including the ability to change between Spanish and English versions and a pretty sweet drop down menu. View the site <a href="http://bodegascastromartin.com/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://benford.co.nz/new-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progress of some sort&#8230;</title>
		<link>http://benford.co.nz/progress-of-some-sort/</link>
		<comments>http://benford.co.nz/progress-of-some-sort/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 10:02:31 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Amusing]]></category>
		<category><![CDATA[Inspiring]]></category>

		<guid isPermaLink="false">http://benford.co.nz/?p=17</guid>
		<description><![CDATA[Well im getting there at least with the index page and the overall CSS. Hopefully by the end of the week will have all the basic templates sorted.]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/zhnYPecc1YE" frameborder="0" width="560" height="349"></iframe></p>
<p>Well im getting there at least with the index page and the overall CSS. Hopefully by the end of the week will have all the basic templates sorted.</p>
]]></content:encoded>
			<wfw:commentRss>http://benford.co.nz/progress-of-some-sort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Development</title>
		<link>http://benford.co.nz/wordpress-theme-development/</link>
		<comments>http://benford.co.nz/wordpress-theme-development/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 00:43:38 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Theming]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://benford.co.nz/?p=5</guid>
		<description><![CDATA[You will see some odd stuff going on around these parts, basically I&#8217;m using this URL as a testing platform for a series of WordPress themes that I am developing. First up SUPERCLEANOTRON &#8211; doesn&#8217;t need much explaining really. It&#8217;s clean, it&#8217;s super and it&#8217;s a bit robotic. Let&#8217;s do this thing!]]></description>
			<content:encoded><![CDATA[<p><a href="http://benford.co.nz/wp-content/uploads/2011/07/300pxdevastatormanga1dy7.jpg"><img class="alignleft size-medium wp-image-8" title="300pxdevastatormanga1dy7" src="http://benford.co.nz/wp-content/uploads/2011/07/300pxdevastatormanga1dy7-214x300.jpg" alt="" width="214" height="300" /></a>You will see some odd stuff going on around these parts, basically I&#8217;m using this URL as a testing platform for a series of WordPress themes that I am developing. First up SUPERCLEANOTRON &#8211; doesn&#8217;t need much explaining really. It&#8217;s clean, it&#8217;s super and it&#8217;s a bit robotic.</p>
<p>Let&#8217;s do this thing!</p>
]]></content:encoded>
			<wfw:commentRss>http://benford.co.nz/wordpress-theme-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

