<?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>Robb Clarke - Fredericton Web and Print Designer &#187; WordPress</title>
	<atom:link href="http://robbclarke.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://robbclarke.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 14 Aug 2010 12:49:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Add &#8220;Like&#8221; and &#8220;Tweet&#8221; Buttons To WordPress Blog Posts</title>
		<link>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/</link>
		<comments>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 00:51:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[Codex]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Fredericton Web Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Like]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[robbclarke.com]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Codex]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=649</guid>
		<description><![CDATA[Yesterday I added the new Tweet button provided by Twitter and the new Like button provided by Facebook to my blog posts (seen above, click them to take the for a test drive). They&#8217;re quick and easy ways for readers to share posts with other readers and they even include some nifty little counters too. [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I added the new Tweet button provided by Twitter and the new Like button provided by Facebook to my blog posts <em>(seen above, click them to take the for a test drive)</em>. They&#8217;re quick and easy ways for readers to share posts with other readers and they even include some nifty little counters too. Oooh fancy!</p>
<p>Combining these buttons with the WordPress codex is pretty easy. Insert a couple snippets of code and you can easily add the URL and post/page title dynamically to the &#8220;Tweets&#8221; and &#8220;Likes&#8221;.</p>
<p>The codes from the WordPress codex that we&#8217;re going to use are:</p>
<div style="margin: 0 0 15px 0;">
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_permalink</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlText"> and </span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_title</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
</div>
<p>Two lines of code and you&#8217;re all set up. Copy and paste the code below, style as needed to position the buttons how you see fit. For the Twitter Tweet button, don&#8217;t forget to replace my username with yours.</p>
<h3>Facebook Like Button</h3>
<div style="margin: 0 0 15px 0;">
<pre class="html">
<span class="htmlOtherTag">&lt;iframe src=<span class="htmlAttributeValue">&quot;http://www.facebook.com/plugins/like.php?href=&lt;?php the_permalink() ?&gt;</span><span class="htmlSpecialChar">&amp;amp;</span>layout=button_count<span class="htmlSpecialChar">&amp;amp;</span>show_faces=false<span class="htmlSpecialChar">&amp;amp;</span>width=100<span class="htmlSpecialChar">&amp;amp;</span>action=like<span class="htmlSpecialChar">&amp;amp;</span>font=arial<span class="htmlSpecialChar">&amp;amp;</span>colorscheme=light<span class="htmlSpecialChar">&amp;amp;</span>height=21&quot;</span> scrolling=<span class="htmlAttributeValue">&quot;no&quot;</span> frameborder=<span class="htmlAttributeValue">&quot;0&quot;</span> style=<span class="htmlAttributeValue">&quot;<span class="cssProperty">border</span><span class="cssRest">:</span><span class="cssValue">none</span><span class="cssRest">;</span> <span class="cssProperty">overflow</span><span class="cssRest">:</span><span class="cssValue">hidden</span><span class="cssRest">;</span> <span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue">100px</span><span class="cssRest">;</span> <span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue">21px</span><span class="cssRest">;</span>&quot;</span> allowTransparency=<span class="htmlAttributeValue">&quot;true&quot;</span>&gt;<span class="htmlOtherTag">&lt;/iframe&gt;</span>
</pre>
</div>
<h3>Twitter Tweet Button</h3>
<div style="margin: 0 0 15px 0;">
<pre class="html">
<span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;http://twitter.com/share&quot;</span> class=<span class="htmlAttributeValue">&quot;twitter-share-button&quot;</span> data-text=<span class="htmlAttributeValue">&quot;<span class="htmlOtherTag">&lt;?php the_title(); ?&gt;</span></span>&quot;</span> data-count=<span class="htmlAttributeValue">&quot;horizontal&quot;</span> data-via=<span class="htmlAttributeValue">&quot;robbclarke&quot;</span>&gt;Tweet<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;http://platform.twitter.com/widgets.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
</div>
<p>Did you find this useful? Wouldn&#8217;t hurt to share it with others would it?</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dirt Cheap Summer Special</title>
		<link>http://robbclarke.com/news/dirt-cheap-summer-special/</link>
		<comments>http://robbclarke.com/news/dirt-cheap-summer-special/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 23:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Dirt Cheap]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Summer Special]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=547</guid>
		<description><![CDATA[For the summer of 2010 I&#8217;m offering a dirt cheap special on websites and blogs. Sign up now and get your website for only $30 a month for as long as you have your website with me. Get your web presence up and running and get a leg up on your competition! What does that [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-548" style="margin: 0 0 10px 10px;" title="30dollar" src="http://robbclarke.com/wp-content/uploads/2010/06/30dollar.png" alt="" width="191" height="144" align="right" />For the summer of 2010 I&#8217;m offering a dirt cheap special on websites and blogs. Sign up now and get your website for only $30 a month for as long as you have your website with me. Get your web presence up and running and get a leg up on your competition!</p>
<p>What does that $30 get you?</p>
<ul>
<li>One domain name.</li>
<li>Installed WordPress content management system (letting you update and modify your website at your own leisure).</li>
<li>40+ themes for you to choose from to style your website, these themes are changeable at any time!</li>
<li>The ability to upload your own themes and plugins to further customize your site!</li>
</ul>
<p>Want to save even more money? Pay for a year up front and save $60 on the annual cost. That&#8217;s right, for only $300 a year you can get a domain name and a website up and running!</p>
<p><small>* A custom designed and built website is not included in this special.</small></p>
<h2>Interested? Fire off an email now!</h2>
<div id="contact">
<form action="http://www.robbclarke.com/sendmail-contact.php" method="POST">
<ul>
<li>Full Name</li>
<li class="input">
<input id="name" name="name" type="text" /></li>
<li>Email</li>
<li class="input">
<input id="email" name="email" type="text" /></li>
<li>Phone</li>
<li class="input">
<input id="phone" name="phone" type="text" /></li>
<li>Message</li>
<li class="input"><textarea id="message" cols="50" rows="4" name="message"></textarea></li>
<li class="captcha"><script src="http://api.recaptcha.net/challenge?k=6LefIgsAAAAAANaHRYFjJ50kdCs5NOrQU5vRbINY" type="text/javascript"></script><noscript><br />
<iframe src="http://api.recaptcha.net/noscript?k=6LefIgsAAAAAANaHRYFjJ50kdCs5NOrQU5vRbINY" height="300" width="500" frameborder="0"></iframe></p>
<p><textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea></p>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
</noscript></li>
<li class="buttons">
<input name="Submit" type="submit" value="Submit" /></li>
</ul>
</form>
</div>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/news/dirt-cheap-summer-special/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Move Users From One WordPress Blog to Another</title>
		<link>http://robbclarke.com/online-tools/how-to-move-users-from-one-wordpress-blog-to-another/</link>
		<comments>http://robbclarke.com/online-tools/how-to-move-users-from-one-wordpress-blog-to-another/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 17:51:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Dagon Design]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Import User]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Rode Works]]></category>
		<category><![CDATA[Users to CSV]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=507</guid>
		<description><![CDATA[Today, while moving a WordPress built site from one domain to another I ran into a snag. Import/Export for blog posts and pages worked great for moving the content from one site to the other but what do I do with the 79 users on the website? WordPress, sadly, doesn&#8217;t have an Import/Export function for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://robbclarke.com/online-tools/how-to-move-users-from-one-wordpress-blog-to-another/"><img class="alignnone size-full wp-image-509" title="worpress-user-move" src="http://robbclarke.com/wp-content/uploads/2010/06/worpress-user-move.jpg" alt="worpress-user-move" width="600" height="200" /></a></p>
<p>Today, while moving a WordPress built site from one domain to another I ran into a snag. Import/Export for blog posts and pages worked great for moving the content from one site to the other but what do I do with the 79 users on the website? WordPress, sadly, doesn&#8217;t have an Import/Export function for users. For a minute, I panicked and thought &#8220;Am I going to have to manually enter all of these users into the site for a second time?&#8221; The answer is no.</p>
<p>Here&#8217;s the math:</p>
<h3>Step 1: Export Original</h3>
<p><a title="Users to CSV" href="http://yoast.com/wordpress/users-to-csv/" target="_blank">Users to CSV</a> is a useful plugin by Joost that lets you export your user list as a CSV file. Install the plugin to your site and run the program via the Users tab in the navigation of your back end. From here you&#8217;ll get a nice, neat CSV file with a table of your users &#8211; complete with IDs, email addresses, URLs, display names, first names, last names, nicknames, and registration dates.</p>
<h3>Step 2: Install Importer</h3>
<p>Now that you&#8217;ve got your CSV file exported you&#8217;re obviously going to need to get it installed on the new site. A great tool for this is Rode Works&#8217; tweek of Dagon Design&#8217;s <a title="Import User" href="http://rodeworks.com/technology/wordpress-batch-import-users/" target="_blank">Import User</a> plugin. The original automatically sent out notification emails to the new users saying that their new account was set up. Since their accounts are already supposed to be set up, you don&#8217;t wan to be sending out new notifications, this is where Rode Works&#8217; tweek of the original code comes into play.</p>
<h3>Step 3: Adjust CSV and Import</h3>
<p>You&#8217;ll need to adjust your CSV file using Excel (or similar software) and move some cells around to meet the requirements of the Import User plugin but for the most part it&#8217;s pretty straight forward. You can either import the CSV file via the plugin or copy and paste the content into the back end.</p>
<p>There&#8217;s a bit of playing around involved but it in the end it should only really take about 10 minutes to do all of this &#8211; which is far better than the hours it would take to do it by hand, or worse, force the users to do it themselves.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/online-tools/how-to-move-users-from-one-wordpress-blog-to-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>River Valley Arts Alliance Site Launch</title>
		<link>http://robbclarke.com/site-builds/river-valley-arts-alliance-site-launch/</link>
		<comments>http://robbclarke.com/site-builds/river-valley-arts-alliance-site-launch/#comments</comments>
		<pubDate>Sun, 16 May 2010 15:25:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Builds]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dooryard Arts Festival]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[RiVA]]></category>
		<category><![CDATA[River Valley Arts Alliance]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Woodstock]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=437</guid>
		<description><![CDATA[<a rel="attachment wp-att-436" href="http://robbclarke.com/?attachment_id=436"><img class="alignnone size-full wp-image-436" title="riva" src="http://robbclarke.com/wp-content/uploads/2010/05/riva.jpg" alt="riva" width="600" height="200" /></a>]]></description>
			<content:encoded><![CDATA[<p><a href="/site-builds/river-valley-arts-alliance-site-launch/"><img class="alignnone size-full wp-image-436" title="riva" src="http://robbclarke.com/wp-content/uploads/2010/05/riva.jpg" alt="riva" width="600" height="200" /></a></p>
<p>This week I&#8217;m proud to announce the launch of the new <a title="River Valley Arts Alliance" href="http://www.rivervalleyarts.net" target="_blank">River Valley Arts Alliance website</a>. The website is build on the WordPress content management system, letting the client update the website at their leisure.</p>
<p>The site features:</p>
<ul>
<li>an events calendar</li>
<li>photo slideshow</li>
<li>photo gallery</li>
<li>member application forms</li>
<li>donation forms</li>
<li>an artist database</li>
<li>a microsite for their annual Dooryard Arts Festival</li>
</ul>
<p>The website is going to be a great resources for keeping up to date with RiVA and the arts community in and around the Saint John River Valley. Be sure to check back frequently as we near the festival dates for Dooryard as more events and festivities are announced.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/site-builds/river-valley-arts-alliance-site-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Different Ways to Generate URLs in WordPress</title>
		<link>http://robbclarke.com/coding-tricks/different-ways-to-generate-urls-in-wordpress/</link>
		<comments>http://robbclarke.com/coding-tricks/different-ways-to-generate-urls-in-wordpress/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 22:37:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dynamic URL]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[URL Generator]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=81</guid>
		<description><![CDATA[I&#8217;m big on WordPress, in fact, I&#8217;m using it for this site and most of the other sites that I&#8217;ve coded. Recently (when working on this blog) I decided that I wanted to generate the URL of the current page so that I could submit that specific page to social media sites, not just the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/different-ways-to-generate-urls-in-wordpress/"><img class="alignright size-full wp-image-88" title="robbclarke-wordpress" src="http://clarkegraphics.com/wp-content/uploads/2009/08/wordpress.jpg" alt="robbclarke-wordpress" width="600" height="200" /></a><br />
I&#8217;m big on WordPress, in fact, I&#8217;m using it for this site and most of the other sites that I&#8217;ve coded. Recently (when working on this blog) I decided that I wanted to generate the URL of the current page so that I could submit that specific page to social media sites, not just the root URL. I search everywhere but couldn&#8217;t find the solution that I was looking for and then it hit me.</p>
<p>If you want to dynamically generate the URL of the page/post that you are currently viewing then all you need to enter is:</p>
<pre class="php"></pre>
<p>This code generates and displays the current URL, which is great for submitting articles to Digg, Facebook, Twitter etc. etc.</p>
<p>What a big sigh of relief it was when I found that. The funny thing is that it&#8217;s been staring me in the face all along.</p>
<h4>Various Codes to Generate Different URLs in WordPress</h4>
<p>Below is a list of a number of variables used to generate various URLs using WordPress. The variable is on the left and the result is on the right.</p>
<pre class="php">admin_email <span class="phpOperator">=</span> admin@example
atom_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed/atom
</span>charset <span class="phpOperator">=</span> UTF-<span class="phpNumber">8</span>
comments_atom_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/comments/feed/atom
</span>comments_rss2_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/comments/feed
</span>description <span class="phpOperator">=</span> Just another WordPress blog
home <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home
</span>html_type <span class="phpOperator">=</span> text/html
language <span class="phpOperator">=</span> en-US
name <span class="phpOperator">=</span> Testpilot
pingback_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/xmlrpc<span class="phpOperator">.</span>php
</span>rdf_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed/rdf
</span>rss2_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed
</span>rss_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed/rss
</span>siteurl <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home
</span>stylesheet_directory <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo
</span>stylesheet_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo/style.css
</span>template_directory <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo
</span>template_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo
</span>text_direction <span class="phpOperator">=</span> ltr
url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home
</span>version <span class="phpOperator">=</span> <span class="phpNumber">2</span><span class="phpOperator">.</span><span class="phpNumber">7</span>
wpurl <span class="phpOperator">=</span> http<span class="phpOperator">:</span>//example/home/wp</pre>
<p>You can easily display this information by substituting the variable in the following code for the desired URL:</p>
<pre class="php"></pre>
<p>Did that help? Share your thoughts below!</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/different-ways-to-generate-urls-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nick Forret Photography</title>
		<link>http://robbclarke.com/site-builds/nick-forret-photography/</link>
		<comments>http://robbclarke.com/site-builds/nick-forret-photography/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:18:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Builds]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[Nick Forret]]></category>
		<category><![CDATA[Photographer]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=38</guid>
		<description><![CDATA[Good friend and photographer, Nick Forret, approached me in early July about relaunching his website and I was more than happy to help him out. Nick&#8217;s old website, while nice looking, wasn&#8217;t set up to be easily edited by Nick who has little coding background. Our solution was to set up his new site using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/nick-forret-photography/"><img class="alignright size-full wp-image-39" title="Nick Forret Photography" src="http://clarkegraphics.com/wp-content/uploads/2009/08/nickforret.jpg" alt="Nick Forret Photography" width="600" height="200" /></a></p>
<p>Good friend and photographer, <a title="Nick Forret Photography" href="http://www.nickforret.com" target="_self">Nick Forret</a>, approached me in early July about relaunching his website and I was more than happy to help him out. Nick&#8217;s old website, while nice looking, wasn&#8217;t set up to be easily edited by Nick who has little coding background. Our solution was to set up his new site using WordPress which let him easily update his website and even keep a blog. The new site is set up to automatically add Lightbox to his uploaded images, thus creating a bit of a fancy gallery for his users to view his work.</p>
<p>We&#8217;ve also set up a blog with comments enabled to promote discussion about various topics.</p>
<p>Nick is still in the process of adding content to the site but you can view the active site here:<br />
<a title="Nick Forret Photography" href="http://www.nickforret.com" target="_blank">http://www.nickforret.com</a></p>
<p>Don&#8217;t forget, Nick is always available for work!</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/site-builds/nick-forret-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
