<?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>Design Woop &#124; The Web Design and Development Blog &#187; WordPress</title>
	<atom:link href="http://designwoop.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://designwoop.com</link>
	<description>The Web design blog brought to you by Stu Greenham</description>
	<lastBuildDate>Mon, 06 Sep 2010 11:53:43 +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>Integrating Lessn with WordPress to Create Future Proof Short URL&#8217;s</title>
		<link>http://designwoop.com/2010/04/integrating-lessn-with-wordpress-to-create-future-proof-short-urls/</link>
		<comments>http://designwoop.com/2010/04/integrating-lessn-with-wordpress-to-create-future-proof-short-urls/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 14:31:40 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=1664</guid>
		<description><![CDATA[It seem's like everyone is using Bit.ly these days, and until about a week ago, I was too! One problem is that all these links were creating are relying on Mr Bit.ly hanging around. Okay okay, its unlikely that the popular shortener will go anywhere but I am asking "What If?".]]></description>
			<content:encoded><![CDATA[<p>It seem&#8217;s like everyone is using Bit.ly these days, and until about a week ago, I was too! One problem is that all these links were creating are relying on Mr Bit.ly hanging around. Okay okay, its unlikely that the popular shortener will go anywhere but I am asking &#8220;What If?&#8221;.</p>
<p>I decided to convert to Shaun Inman&#8217;s simple URL shortener <a href="http://shauninman.com/archive/2009/08/17/less_n" rel="nofollow">Lessn</a>, which is a self hosted script available for free! Now I have this handling my links and have managed to not only integrate it with my WordPress install but I can also track my views via <a href="http://haveamint.com">Mint</a>, here&#8217;s how&#8230;</p>
<h4>Setting Up Lessn</h4>
<ol>
<li>Create a new database on your Web Host</li>
<li>Download <strong>Lessn</strong> <a href="http://www.shauninman.com/assets/downloads/lessn.zip" rel="nofollow">here</a> and unzip the files.</li>
<li>Open <strong>config.php</strong> and amend to include your database details, a login username and password and save the file.</li>
<li>Upload the full lessn folder via FTP.</li>
<li>Visit <strong>http://domain.com/lessn/-/</strong> to start shortening URL&#8217;s*</li>
</ol>
<p>*Please note that the lessn folder can and probably should be renamed to something shorter. For example, I use /s/-, which gains me an extra 4 letters. Make sure you rename the folder before step 5.</p>
<h4>Setting Up WordPress To Work with Lessn</h4>
<p>Now we have Lessn working and you have a self hosted method for creating short URL&#8217;s not relying on anyone else, we can integrate it with WordPress thanks to the <a href="http://wordpress.org/extend/plugins/wp-lessn/" rel="nofollow">WP-Lessn</a> plugin by Jay Robinson. This plugin simply creates a short URL using Lessn when a post is published and saves it to a <a href="http://designwoop.com/2008/12/wp-custom-fields/">custom field</a> that can then be displayed on your post page wherever your wish.</p>
<ol>
<li>Download the plugin <a href="http://wordpress.org/extend/plugins/wp-lessn/" rel="nofollow">here</a>.</li>
<li>Upload <strong>wp-lessn</strong> directory to <strong>/wp-content/plugins/</strong> directory.</li>
<li>Activate the plugin.</li>
<li>Go to the <strong>WP Lessn</strong> submenu underneath the <strong>Plugins</strong> menu.</li>
<li>Enter the location of your Lessn installation (eg. http://domain.com/lessn/-/).</li>
<li>Enter your Lessn API key, which can be found on your Lessn homepage (see image below).</li>
<li>Click Save</li>
</ol>
<p><img src="http://designwoop.com/uploads/2010/04/api-example.png" alt="API Example" title="API Example" width="428" height="154" class="alignnone size-full wp-image-1677" /></p>
<p>Now, fingers crossed if everything has been setup right then when you save your next post you will find a custom field type called <strong>wp_lessnd_url</strong> just under the trackbacks section on your edit post page. </p>
<h4>Integrating Lessn Into Your Post Pages</h4>
<p>Next step is to use this within your site to allow users to tweet your post using the shorter URL. To do this we will need to first add a <em>Tweet This</em> button or link to your single page template linking it straight to Twitter like this&#8230;</p>
<pre class="brush: php;">
&lt;a href=&quot;http://twitter.com/home?status=STATUS TO GO HERE&quot; title=&quot;Tweet this post&quot;&gt;Tweet This Post&lt;/a&gt;
</pre>
<p>Notice where I have put <strong>STATUS TO GO HERE</strong>, this is where we will need to add the post title and the short url that users can then Tweet straight to Twitter. To add the title this is pretty straight forward, we just use <a href="http://codex.wordpress.org/Template_Tags/the_title" rel="nofollow">the_title</a> template tag that comes with WordPress, like so&#8230;.</p>
<pre class="brush: php;">
&lt;a href=&quot;http://twitter.com/home?status=&lt;?php the_title(); ?&gt;&quot; title=&quot;Tweet this post&quot;&gt;Tweet This Post&lt;/a&gt;
</pre>
<p>Next step is to add the short URL that users will see on Twitter and be able to click to see the post. Now we call the wp_lessnd_url to display this but we also need to add a backup incase there isn&#8217;t a short URL setup for this post. For this backup we will use <a href="http://codex.wordpress.org/Template_Tags/the_permalink" rel="nofollow">the_permalink</a> template tag.  Using a simple if statement, this is how we achieve it&#8230;</p>
<pre class="brush: php;">
&lt;a href=&quot;http://twitter.com/home?status=&lt;?php the_title(); ?&gt; &lt;?php if(get_post_meta($post-&gt;ID, &quot;wp_lessnd_url&quot;, true)) { echo get_post_meta($post-&gt;ID, &quot;wp_lessnd_url&quot;, true); } else { the_permalink(); } ?&gt;&quot; title=&quot;Tweet this post&quot;&gt;Tweet This Post&lt;/a&gt;
</pre>
<p>Thats all thats to it! I know bit.ly links are nice and compact but for me, been able to shrink from&#8230;</p>
<pre class="brush: plain;">

http://designwoop.com/2010/04/show-me-whatcha-got-html-5-vs-flash-showcase/
</pre>
<p>To this&#8230;</p>
<pre class="brush: plain;">

http://designwoop.com/s/3a
</pre>
<p>Mean&#8217;s I can still promote my brand Design Woop but still allow room for the post title in my Tweets. Now when I click on the <em>Tweet This</em> button that I created previously I get taken to Twitter and the post title and short URL are already there and I can just hit Tweet! Boom!</p>
<p><img src="http://designwoop.com/uploads/2010/04/Twitter-Example.png" alt="Twitter Example" title="Twitter Example" width="428" height="107" class="alignnone size-full wp-image-1688" /></p>
<h4>Have Mint?</h4>
<p>If you also have Mint installed on your site then you can install Shaun Inmans <a href="http://www.haveamint.com/peppermill/pepper/97/lessn/" rel="nofollow">Lessn Pepper</a> to allow tracking of each URL.</p>
<p>Let me know if you have any trouble installing Lessn Pepper as I won&#8217;t be going over it in this post. Any other questions or problems then leave a comment below.</p>
<h2  class="related_post_title">Here are some related <em>posts:</em></h2><ul class="related_post"><li><a href="http://designwoop.com/2010/04/how-to-make-your-theme-wordpress-3-0-compatible/" title="How To Make Your Theme WordPress 3.0 Compatible">How To Make Your Theme WordPress 3.0 Compatible</a></li><li><a href="http://designwoop.com/2010/04/how-to-add-twitter-anywhere-in-wordpress/" title="How to Add Twitter @anywhere in WordPress">How to Add Twitter @anywhere in WordPress</a></li><li><a href="http://designwoop.com/2010/02/how-to-integrate-google-buzz-into-your-wordpress-blog/" title="HOW TO: Integrate Google Buzz Into Your WordPress Blog">HOW TO: Integrate Google Buzz Into Your WordPress Blog</a></li><li><a href="http://designwoop.com/2009/06/displaying-your-latest-tweet/" title="Tutorial: Display your Latest Tweet on your Website">Tutorial: Display your Latest Tweet on your Website</a></li><li><a href="http://designwoop.com/2008/12/wp-custom-fields/" title="Working with Custom Fields in WP">Working with Custom Fields in WP</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2010/04/integrating-lessn-with-wordpress-to-create-future-proof-short-urls/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Favourite Links 4</title>
		<link>http://designwoop.com/2010/02/favourite-links-of-the-week-4/</link>
		<comments>http://designwoop.com/2010/02/favourite-links-of-the-week-4/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 13:04:38 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=783</guid>
		<description><![CDATA[Week 4 is up and here are my favourite posts/links/freebies of the last 7 days. There are not much this week unfortunately I will make up for this next week!]]></description>
			<content:encoded><![CDATA[<p>Week 4 is up and here are my favourite posts/links/freebies of the last 7 days. There are not much this week unfortunately I will make up for this next week!</p>
<h4>jQuery Growl</h4>
<p>Visit Source: <a href="http://labs.d-xp.com/growl/">http://labs.d-xp.com/growl/</a></p>
<p>Growl the popular software for Mac (and Windows now) has now been made into a neat little jQuery plugin allowing you to alert your users in the same manner the Growl software does.</p>
<p><a href="http://labs.d-xp.com/growl/"><img alt="Growl" src="http://designwoop.com/images/posts/links-4/growl.jpg" class="alignnone visit-link" width="428" height="195" /></a></p>
<h4>Showcase of Buttons in Web Design</h4>
<p>Visit Source: <a href="http://vandelaydesign.com/blog/galleries/showcase-button-design/">http://vandelaydesign.com</a></p>
<p>Vandelay Design posted this great article showcasing many button styles in web design. A great bookmark for inspiration when your struggling to come up with some of your own!</p>
<p><a href="http://vandelaydesign.com/blog/galleries/showcase-button-design/"><img alt="Buttons" src="http://designwoop.com/images/posts/links-4/buttons.jpg" class="alignnone visit-link" width="428" height="195" /></a></p>
<h4>35 Beautiful E-Commerce Websites</h4>
<p>Visit Source: <a href="http://www.smashingmagazine.com/2010/01/22/35-beautiful-and-effective-ecommerce-websites/">http://www.smashingmagazine.com</a></p>
<p>Another showcase here this time E-Commerce websites. Smashing Magazine posted this beast displaying 35 beautiful E-Commerce websites. Another great bookmark!</p>
<p><a href="http://www.smashingmagazine.com/2010/01/22/35-beautiful-and-effective-ecommerce-websites/"><img alt="Ecommerce" src="http://designwoop.com/images/posts/links-4/ecommerce.jpg" class="alignnone visit-link" width="428" height="272" /></a></p>
<h4>60+ Free Clean, Simple Minimalist WordPress Themes</h4>
<p>Visit Source: <a href="http://www.tripwiremagazine.com/2009/12/60-free-clean-simple-minimalist-wordpress-themes.html">http://www.tripwiremagazine.com</a></p>
<p>Trip Wire posted this article showcasing 60+ free WordPress themes, mostly minimalistic in style. If your new to Web Design but want to start blogging etc then this is a great place to start looking for a sweet WordPress theme.</p>
<p><a href="http://www.tripwiremagazine.com/2009/12/60-free-clean-simple-minimalist-wordpress-themes.html"><img alt="WordPress Themes" src="http://designwoop.com/images/posts/links-4/minimal-wp.jpg" class="alignnone visit-link" width="428" height="289" /></a></p>
<h4>30+ PSD Files (Books, Notebooks, Magazines)</h4>
<p>Visit Source: <a href="http://ledesigne.com/2010/01/30-psd-files-books-notebooks-magazines/">http://ledesigne.com</a></p>
<p>LeDesigned (A blog I recently started subscribing to as they are constantly pumping out great articles daily) posted this awesome article and a great resource containing 35+ PSD Books, Notebooks and Magazine files.</p>
<p><a href="http://ledesigne.com/2010/01/30-psd-files-books-notebooks-magazines/"><img alt="30+ PSD Files" src="http://designwoop.com/images/posts/links-4/psd.jpg" class="alignnone visit-link" width="428" height="289" /></a></p>
<h4>Superb Jquery CSS Image Effects and Tooltips Tutorials</h4>
<p>Visit Source: <a href="http://www.designzzz.com/jquery-css-image-effects-tooltips-tutorials/">http://www.designzzz.com</a></p>
<p>Designzzz pulled together this amazing post of jQuery plugin/effects. If your like me and always trying to find them cool plugins you&#8217;ve previously come across in the past but can&#8217;t remember where you saw them well this is one to bookmark!</p>
<p><a href="http://www.designzzz.com/jquery-css-image-effects-tooltips-tutorials/"><img alt="jQuery Effects" src="http://designwoop.com/images/posts/links-4/jquery.jpg" class="alignnone visit-link" width="428" height="184" /></a></p>
<h4>20 Fonts Ideal for Big and Powerful Headings</h4>
<p>Visit Source: <a href="http://webdesignledger.com/freebies/20-fonts-ideal-for-big-and-powerful-headings/">http://webdesignledger.com</a></p>
<p>Another great post from Web Design Ledger to finish of the post! This post looks at 20 fonts that are ideal for big and powerful headings! Franchise and Nevis are my favourites!</p>
<p><a href="http://webdesignledger.com/freebies/20-fonts-ideal-for-big-and-powerful-headings"><img alt="20 Fonts" src="http://designwoop.com/images/posts/links-4/fonts.jpg" class="alignnone visit-link" width="428" height="253" /></a></p>
<p>Right thats it for this week, as I am off on holiday so got lots to do but next week I will have plenty for you!</p>
<h2  class="related_post_title">Here are some other <em>posts:</em></h2><ul class="related_post"><li><a href="http://designwoop.com/2010/05/lost-finale-explained-well/" title="Lost Finale Explained Well!">Lost Finale Explained Well!</a></li><li><a href="http://designwoop.com/2008/09/wordpress-xml-import-download/" title="WP .XML Test Data Import">WP .XML Test Data Import</a></li><li><a href="http://designwoop.com/2009/09/tutorial-display-your-latest-tweet-on-your-website-using-simplepie/" title="Tutorial: Display your Latest Tweet on your Website using SimplePie">Tutorial: Display your Latest Tweet on your Website using SimplePie</a></li><li><a href="http://designwoop.com/2009/06/displaying-your-latest-tweet/" title="Tutorial: Display your Latest Tweet on your Website">Tutorial: Display your Latest Tweet on your Website</a></li><li><a href="http://designwoop.com/2009/04/nerdpress-released/" title="(Nerd)Press Theme Released">(Nerd)Press Theme Released</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2010/02/favourite-links-of-the-week-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To: Move WordPress to a new Domain!</title>
		<link>http://designwoop.com/2009/11/how-to-move-wordpress-to-a-new-domain/</link>
		<comments>http://designwoop.com/2009/11/how-to-move-wordpress-to-a-new-domain/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 21:03:04 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[configuring]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=538</guid>
		<description><![CDATA[For about roughly a year now I have been considering moving away from selfconclusion.co.uk to either 1) a new funky domain name, or 2) blog.stugreenham.com and yesterday in a wild move I took the plunge! Luckily things all went smoothly (he say's) and so far I have not experienced any major issues...]]></description>
			<content:encoded><![CDATA[<p>For about roughly a year now I have been considering moving away from <a href="http://selfconclusion.co.uk">selfconclusion.co.uk</a> to either 1) a new funky domain name, or 2) <a href="http://designwoop.com">blog.stugreenham.com</a> and yesterday in a wild move I took the plunge! Luckily things all went smoothly (he say&#8217;s) and so far I have not experienced any major issues so I thought the first post on my newly transfered blog will be about how I managed to acheive this so simply!</p>
<h4>Beginning</h4>
<p>To begin with and before I even touched my Self Conclusion (SC), I logged into my web hosting account and setup the new domain, created my new database and installed the latest copy of WordPress. Once this was done, I ran through the WP installation.</p>
<p>Next I logged into my current database that SC was using and backed the whole lot up exporting it to a .sql file. Although WP offers an Export/Import function I have had difficulty with it on previous occasions and there is also a limit on what file size you can import. Finally, take a full backup of your WP files which will include any custom themes, images, plugins, etc.</p>
<h4>Uploading</h4>
<p>Now take these backed up files and upload them to the new WP installation keeping the locations the same (for eg. If you have images in the root of your directory they will need to be in the root of your new directory). You don&#8217;t need to log into the WP admin area yet because once you transfer over the old database it will sort out all the users/posts/active plugins etc the whole lot just like you are used to from your existing domain. Once all the files are in place, log into your new database and drop all the tables in the database then import the sql from the old site that you have previously saved. This should import all your tables for you and populate them with all your settings.</p>
<p>Here is where the first tricky bit comes in. Whilst you are still in the database open the table wp_options and update the <strong>siteurl</strong> to the new URL (as shown in the picture below) of your website and save it.</p>
<p><img src="http://designwoop.com/images/posts/movingwp/phpmyadmin.jpg" alt="PHPMyAdmin" width="428" height="215" /></p>
<p>Now login to your new URL WP admin area (http://www.domain.com/wp-admin/) using your old username and password that previously worked on the old site. Once you are logged in you should see all your posts, comments, plugins, etc.</p>
<p>Head to Settings page and make sure <strong>WordPress address (URL)</strong> and <strong>Blog address (URL)</strong> are both correct to the new URL. Once they have been changed should they need to then your blog should be up and running (nearly).</p>
<p><img src="http://designwoop.com/images/posts/movingwp/settings.jpg" alt="Settings" width="428" height="307" /></p>
<h4>Configuring</h4>
<p>Hopefully you have made it this far with me and no errors at which point we will need to check through each of the posts to make sure there arn&#8217;t any links pointing to the old URL. Thankfully there is a plugin which will do this all for you! The plugin <strong>Velvet Blues Update URLs</strong> is available for download <a href="http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/">here</a>. Upload the plugin and activate it and follow the instructions. Its basically like a search and replace tool and very simple.</p>
<p>Whilst I am talking about plugins, it might be worth mentioning that if you are running Google Sitemap plugin that you will need to tell it to recreate your sitemap as it will still be using the old one with all the wrong URL links.</p>
<h4>Redirecting using .htaccess</h4>
<p>Now you have your new blog up and running as if it were the old one but with a new shiny URL you will need to make sure any users from the old site get redirected to the new URL. There are many ways in which this can be done but as I have alot of bookmarked links and posted my links in many places I needed to ensure that any link from selfconclusion.co.uk would redirect to my new URL and keep the same structure (for eg. http://selfconclusion.co.uk/test would go to http://designwoop.com/test).</p>
<p>After searching around I came across a great post from Nish Vamadevan over at <a href="http://www.fnode.com/2008/04/301-redirect-wordpress-posts-to-new-domain/">fnode.com</a> where he explains how to do this. On the root directory of your old domain, you will need to create a .htaccess file and put the following inside&#8230;.</p>
<pre class="brush: plain; light: true;">
# BEGIN WordPress
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.olddomain.com
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
# END WordPress
</pre>
<p>This should hopefully do the trick! Make sure you change the domain names to your and give it a full test and make sure but for me it was spot on so thank you Nish for your great post!</p>
<h4>Final Tidying Up</h4>
<p>Were almost there now, just a few bits to sort out if you use feeds or analytics then this will also apply to you. Obviously both your analytics script and your feed links will be wrong as they will be pointing to your old URL. For me, I use <a href="http://www.google.com/analytics">Google Analytics</a> and all I needed to do was log into my account and ammend the profile to the new address. With <a href="http://feedburner.google.com">Feedburner</a>, again I logged into my account and updated the address, I was too scared to change my feed URL incase I was to lose my subscribers so for now it is still called selfconclusion but I will look into this someday soon!</p>
<p>Right that should be it! I hope this has been helpful for you, if you have any problems then post a comments and I will do my best to assist you!</p>
<h2  class="related_post_title">Here are some related <em>posts:</em></h2><ul class="related_post"><li><a href="http://designwoop.com/2010/09/wordpress-fat-loss-diet-to-speed-up-ease-load/" title="WordPress Fat-Loss Diet to Speed Up And Ease Load">WordPress Fat-Loss Diet to Speed Up And Ease Load</a></li><li><a href="http://designwoop.com/2010/05/best-resources-for-learning-wordpress-development/" title="Best Resources for Learning WordPress Development">Best Resources for Learning WordPress Development</a></li><li><a href="http://designwoop.com/2010/04/integrating-lessn-with-wordpress-to-create-future-proof-short-urls/" title="Integrating Lessn with WordPress to Create Future Proof Short URL&#8217;s">Integrating Lessn with WordPress to Create Future Proof Short URL&#8217;s</a></li><li><a href="http://designwoop.com/2010/04/40-wordpress-powered-websites-with-awesome-designs/" title="40 WordPress-Powered Websites With Awesome Designs">40 WordPress-Powered Websites With Awesome Designs</a></li><li><a href="http://designwoop.com/2010/04/how-to-make-your-theme-wordpress-3-0-compatible/" title="How To Make Your Theme WordPress 3.0 Compatible">How To Make Your Theme WordPress 3.0 Compatible</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2009/11/how-to-move-wordpress-to-a-new-domain/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>(Nerd)Press Theme Released</title>
		<link>http://designwoop.com/2009/04/nerdpress-released/</link>
		<comments>http://designwoop.com/2009/04/nerdpress-released/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 18:06:20 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=287</guid>
		<description><![CDATA[This post is long overdue I know, but I thought I would share the latest goings on in the land of (Nerd)Press, which is that version 1.0 is officially released onto the web for all you WordPress fans to download and use should you want to!]]></description>
			<content:encoded><![CDATA[<p>This post is long overdue I know, but I thought I would share the latest goings on in the land of (Nerd)Press, which is that version 1.0 is officially released onto the web for all you WordPress fans to download and use should you want to!</p>
<p>My original aim was to get this out much earlier and for anyone <a href="http://twitter.com/nerdpress">following</a> my progress on the theme, well, you may have thought it was never gonna be released! I guess I have been nervously putting off the release, with it been my first theme for release I have been worrying about the kind of response it was going to get from everyone. Lucky enough, to date, I have had <strong>110</strong> <a href="http://code.google.com/p/nerdpress-wordpress/downloads/list">downloads via this link</a> (cheeky plug right there), and I am delighted to say that feedback has been wicked! Thank you for your kind words and feedback and thanks to the few Twitter peeps who nicely tested the theme out before its release!</p>
<p><strong>So&#8230;whats next for (Nerd)Press?</strong></p>
<p>Well good question! I am going to hold off for a little while just see how the feedback continues, and wether or not any bugs appear, then the aim is to start integrating more features such as Gravatar support as well as several other more popular WordPress themes. I also am going to tweak a whole bunch of different color schemes, something which was actually recommended to me that I thought would be a great idea. If you have any color specific versions you would like to see then please leave your comments for me, as well as any features you would like to see / think (Nerd)Press is currently missing.</p>
<p><strong>(Nerd)Press on Twitter</strong></p>
<p>Thats right, (Nerd)Press has its very own Twitter account which can be found at <a href="http://twitter.com/nerdpress">http://twitter.com/nerdpress</a> so make sure you follow me to find out the updates as and when they happen. You can also contact me at <a href="http://twitter.com/stugreenham">http://twitter.com/stugreenham</a>.</p>
<p>Thats all I&#8217;m going to say for now, but thank you again to anyone who has downloaded my theme and / or left me feedback! If you have yet to try out the theme then make sure you visit http://nerdpress.co.uk for more details as well as a working live demo of the theme itself!</p>
<p><strong>Update</strong><br />
Version 1.02 has been released, fixing one or two minor issues/bugs, please upgrade from <a href="http://nerdpress.co.uk">http://nerdpress.co.uk</a> if you have experienced any issues. Thanks again!</p>
<h2  class="related_post_title">Here are some other <em>posts:</em></h2><ul class="related_post"><li><a href="http://designwoop.com/2010/05/lost-finale-explained-well/" title="Lost Finale Explained Well!">Lost Finale Explained Well!</a></li><li><a href="http://designwoop.com/2008/09/wordpress-xml-import-download/" title="WP .XML Test Data Import">WP .XML Test Data Import</a></li><li><a href="http://designwoop.com/2009/09/tutorial-display-your-latest-tweet-on-your-website-using-simplepie/" title="Tutorial: Display your Latest Tweet on your Website using SimplePie">Tutorial: Display your Latest Tweet on your Website using SimplePie</a></li><li><a href="http://designwoop.com/2009/06/displaying-your-latest-tweet/" title="Tutorial: Display your Latest Tweet on your Website">Tutorial: Display your Latest Tweet on your Website</a></li><li><a href="http://designwoop.com/2009/04/nerdpress-released/" title="(Nerd)Press Theme Released">(Nerd)Press Theme Released</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2009/04/nerdpress-released/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Working with Custom Fields in WP</title>
		<link>http://designwoop.com/2008/12/wp-custom-fields/</link>
		<comments>http://designwoop.com/2008/12/wp-custom-fields/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 14:30:55 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=172</guid>
		<description><![CDATA[Every one who uses WordPress for there blog will have no doubt at some point noticed the section labelled &#8216;Custom Fields&#8217;. Now be honest, how many of you use this feature on your Website? or how many of you at least understand what it does? The feature is infact very handy and with a few [...]]]></description>
			<content:encoded><![CDATA[<p>Every one who uses WordPress for there blog will have no doubt at some point noticed the section labelled &#8216;Custom Fields&#8217;. Now be honest, how many of you use this feature on your Website? or how many of you at least understand what it does? The feature is infact very handy and with a few simple steps, it can really make your WP Theme stand out, but there are many who don&#8217;t take advantage of it!</p>
<p>Hopefully if your reading this you have some understanding of how WordPress works, and fingers crossed you are aware of the WP Loop that pulls your posts to display on your site. If you are not familier with the Loop then this page will be very usefull to you in your quest to conquer WordPress (<a title="The WordPress Loop" href="http://codex.wordpress.org/The_LoopClick" target="_blank">http://codex.wordpress.org/The_LoopClick</a>).</p>
<p>You can define a custom field for each post and set its value to be anything, for example, a URL of an image you want to display, a URL of a site you wish to link to, or just some random text. Okay, this may not make sense yet, but the easiest way to explain, is to show you how I use the Custom Fields on Self Conclusion.</p>
<p>So first things first, where do I use these &#8216;Custom Fields&#8217; on my site? Well when you visited my blog you will have noticed the featured section of at the top of the page just below the Twitter section. This currently displays three posts, along with an image, and a short excerpt of what it contains. Custom Fields are used here to display the Image for that particular post. You may be wondering why can&#8217;t I just call the images I want to display manually and change them as and when I write a new feature post? Well this method isn&#8217;t as effecient removes some of the dynamicness (not sure if that is a word by the way) of your site. Lets face it, we use WP to allow us to manage our content better!</p>
<p>How do we do it then Stu? Well it is really easy, first you need to assign a custom field, in my case a link to a thumbnail image that I want to display above the post title and excerpt.</p>
<p>In the Custom Field section you have two options that require your attention, the Key and the Value. The Key can be anything, but its a good idea to keep it fairly simple as you need to call it later on, try call it something relevant. Think of the Key value as a variable name, so for this example I will call it post_image because suprise suprise I am going to be using it to display the post image! (clever I know). In the Value field you need to put whatever it is you want to display, in this example a URL which links to an image. Once you have filled in both parts, click on &#8216;Add Custom Field&#8217;.</p>
<p><img src="http://designwoop.com/images/posts/customfields/wp.jpg" alt="Custom Fields in Admin Area" width="428" height="179" /></p>
<p>Next we need to ammend the WP loop to include this new field on your site. Before I implemented an image to my feature posts, I just had the Loop pulling the Title and the Excerpt, and my code looked like this&#8230;</p>
<pre class="brush: php;">
&lt;?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;

&lt;div class=&quot;feature&quot;&gt;

&lt;p class=&quot;feature-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;
title=&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p class=&quot;feature-preview&quot;&gt;&lt;?php the_excerpt(); ?&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;?php endwhile; ?&gt;
</pre>
<p>We need to add a bit of code for the custom field. The key part is the <strong>get_post_meta</strong> part, because this calls the custom field and outputs what you set in the WP Admin area, in this case it will output <strong>http://designwoop.com/images/posts/image1.jpg</strong>. Notice the <strong>post_image</strong>, this needs to be set to the name of your custom field which you should have set earlier. Finally, we need to place the code around an image src tag to ensure the image is displayed on the page, see below&#8230;</p>
<pre class="brush: php;">
&lt;img src=&quot;&lt;?php echo get_post_meta($post-&gt;ID, &quot;post_image&quot;, true); ?&gt;&quot;
alt=&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot; /&gt;
</pre>
<p>Very simple indeed! Now when I add this bit of code into my WP Loop you get the following&#8230;</p>
<pre class="brush: php;">
&lt;?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;

&lt;div class=&quot;feature&quot;&gt;

&lt;img src=&quot;&lt;?php echo get_post_meta($post-&gt;ID, &quot;post_image&quot;, true); ?&gt;&quot;
alt=&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot; /&gt;

&lt;p class=&quot;feature-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;
title=&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p class=&quot;feature-preview&quot;&gt;&lt;?php the_excerpt(); ?&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;?php endwhile; ?&gt;
</pre>
<p>Here is what you see on screen in my case&#8230;</p>
<p><img style="border: 2px solid #cccccc; align: center; margin-bottom: 20px;" src="http://designwoop.com/images/posts/customfields/working.jpg" alt="" width="316" height="288" /></p>
<p>Well thats about it for now, but let me know if this has come in handy for anyone. It really is a simple process and so easy to implement on your website. If you have used custom fields on your WordPress site then leave a link in the comments.</p>
<h2  class="related_post_title">Here are some related <em>posts:</em></h2><ul class="related_post"><li><a href="http://designwoop.com/2008/09/wordpress-xml-import-download/" title="WP .XML Test Data Import">WP .XML Test Data Import</a></li><li><a href="http://designwoop.com/2010/04/integrating-lessn-with-wordpress-to-create-future-proof-short-urls/" title="Integrating Lessn with WordPress to Create Future Proof Short URL&#8217;s">Integrating Lessn with WordPress to Create Future Proof Short URL&#8217;s</a></li><li><a href="http://designwoop.com/2010/04/how-to-make-your-theme-wordpress-3-0-compatible/" title="How To Make Your Theme WordPress 3.0 Compatible">How To Make Your Theme WordPress 3.0 Compatible</a></li><li><a href="http://designwoop.com/2010/02/how-to-integrate-google-buzz-into-your-wordpress-blog/" title="HOW TO: Integrate Google Buzz Into Your WordPress Blog">HOW TO: Integrate Google Buzz Into Your WordPress Blog</a></li><li><a href="http://designwoop.com/2010/09/wordpress-fat-loss-diet-to-speed-up-ease-load/" title="WordPress Fat-Loss Diet to Speed Up And Ease Load">WordPress Fat-Loss Diet to Speed Up And Ease Load</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2008/12/wp-custom-fields/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>WP .XML Test Data Import</title>
		<link>http://designwoop.com/2008/09/wordpress-xml-import-download/</link>
		<comments>http://designwoop.com/2008/09/wordpress-xml-import-download/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 22:22:44 +0000</pubDate>
		<dc:creator>Stu Greenham</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=105</guid>
		<description><![CDATA[If you have read any of my previous posts about the mighty WordPress, then you might be able to work out I am a big fan! Very true indeed! Infact 99% of the sites I have done use it. When creating a design I won't build it into WordPress from the start, main reason is that I can concentrate fully on the HTML/CSS code and not have to worry about PHP loops, etc. Much simpler!]]></description>
			<content:encoded><![CDATA[<p>If you have read any of my previous posts about the mighty WordPress, then you might be able to work out I am a big fan! Very true indeed! Infact 99% of the sites I have done use it. When creating a design I won&#8217;t build it into WordPress from the start, main reason is that I can concentrate fully on the HTML/CSS code and not have to worry about PHP loops, etc. Much simpler!</p>
<p>I use Lorem Ipsum to generate text to bulk out my design and give me a more realistic feel of how it will look live, which is great. When I come to integrating the site into the WordPress CMS I end up left with a kind of &#8216;blank canvas&#8217; containing just the default &#8216;Hello World&#8217; post! Having to continuously create fake posts/categories/tags/comments to check it all works within WP is well, Very Frustrating :(</p>
<p>For anyone else who has the same problem as me, this ones for you. Download the .XML linked below and import this into your WordPress installation and problem is sorted, the .XML will import the following:</p>
<ul>
<li><strong>5 Pages</strong>, with full content</li>
<li><strong>10 Posts</strong>, with content, including Tags, Categories and Excerpt</li>
<li><strong>21 Unique Tags</strong></li>
<li><strong>11 Unique Categories</strong></li>
<li><strong>10 Unique Comments</strong>, including several from the &#8216;Tester&#8217; user (Administrator)</li>
<li><strong>7 Default Links</strong></li>
<li>1 Post (under category &#8216;Bullet List&#8217;) contains a <strong>Bullet List</strong></li>
<li>1 Post (under category &#8216;Numbered List&#8217;) contains a <strong>Numbered List</strong></li>
<li><strong>Various Lengths</strong> on each posts content and title</li>
</ul>
<p>If you are not familiar with Importing an .XML file into WordPress then follow this quick guide (based on the 2.6 version of WP)</p>
<ol>
<li>Unzip the .XML from the downloaded archive</li>
<li>Log into your WP administration area (http://www.sitename/wp-admin)</li>
<li>Select <strong>Manage</strong> from the main menu</li>
<li>From the Manage sub-menu, select <strong>Import</strong></li>
<li>You will be provided with a list of Blog types you wish to import from, select <strong>WordPress</strong> from the bottom of the list</li>
<li>Next select <strong>Browse</strong></li>
<li>Locate to the <strong>.XML</strong> you downloaded from the link below, select <strong>Okay</strong></li>
<li>Finally, select <strong>Upload File and Import</strong></li>
</ol>
<p>Any problems let me know, but should be fairly straight forward! Finally here is the download link:</p>
<p class="download"><strong><a href="http://designwoop.com/uploads/wptester.zip">Download: WordPress XML Import</a></strong> | <a title="Digg This Story" href="http://digg.com/design/WordPress_XML_Data_Import_File_for_Testing_Themes" target="_blank"><strong>Help spread this post by Digging It</strong></a></p>
<h2  class="related_post_title">Here are some related <em>posts:</em></h2><ul class="related_post"><li><a href="http://designwoop.com/2008/12/wp-custom-fields/" title="Working with Custom Fields in WP">Working with Custom Fields in WP</a></li><li><a href="http://designwoop.com/2010/04/integrating-lessn-with-wordpress-to-create-future-proof-short-urls/" title="Integrating Lessn with WordPress to Create Future Proof Short URL&#8217;s">Integrating Lessn with WordPress to Create Future Proof Short URL&#8217;s</a></li><li><a href="http://designwoop.com/2010/04/how-to-make-your-theme-wordpress-3-0-compatible/" title="How To Make Your Theme WordPress 3.0 Compatible">How To Make Your Theme WordPress 3.0 Compatible</a></li><li><a href="http://designwoop.com/2010/02/how-to-integrate-google-buzz-into-your-wordpress-blog/" title="HOW TO: Integrate Google Buzz Into Your WordPress Blog">HOW TO: Integrate Google Buzz Into Your WordPress Blog</a></li><li><a href="http://designwoop.com/2009/02/google-iphone-synching/" title="Finally.. A Sync between Google and iPhone">Finally.. A Sync between Google and iPhone</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2008/09/wordpress-xml-import-download/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
	</channel>
</rss>
