<?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/"
	>

<channel>
	<title>Self Conclusion</title>
	<atom:link href="http://selfconclusion.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://selfconclusion.co.uk</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Thu, 01 Jan 2009 15:26:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Working with Custom Fields in WP</title>
		<link>http://selfconclusion.co.uk/2008/12/wp-custom-fields/</link>
		<comments>http://selfconclusion.co.uk/2008/12/wp-custom-fields/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 15:30:55 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?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>
<img alt="Custom Fields in Admin Area" src="http://selfconclusion.co.uk/images/posts/customfields/wp.jpg" width="520" height="217" style="border: 2px solid rgb(204, 204, 204); align:center; margin-bottom:20px;"  />
<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>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:Consolas,Monaco,"Courier New",Courier,monospace;"><span style="color: #000000;">&lt;?php</span> <span style="color: #000000;">if</span> <span style="color: #000000;">&#40;</span> have_posts<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">:</span> <span style="color: #000000;">while</span> <span style="color: #000000;">&#40;</span> have_posts<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">:</span> the_post<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>
&nbsp;
&lt;div class=&quot;feature&quot;&gt;
&nbsp;
&lt;p class=&quot;feature-title&quot;&gt;&lt;a href=&quot;<span style="color: #000000;">&lt;?php</span> the_permalink<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">?&gt;</span>&quot; rel=&quot;bookmark&quot; 
title=&quot;Permanent Link to <span style="color: #000000;">&lt;?php</span> the_title<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&quot;&gt;<span style="color: #000000;">&lt;?php</span> the_title<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&lt;/a&gt;&lt;/p&gt;	
&nbsp;
&lt;p class=&quot;feature-preview&quot;&gt;<span style="color: #000000;">&lt;?php</span> the_excerpt<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&lt;/p&gt;
&nbsp;
&lt;/div&gt;
&nbsp;
<span style="color: #000000;">&lt;?php</span> <span style="color: #000000;">endwhile</span>; <span style="color: #000000;">?&gt;</span></pre></div></div>

<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://selfconclusion.co.uk/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>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:Consolas,Monaco,"Courier New",Courier,monospace;">&lt;img src=&quot;<span style="color: #000000;">&lt;?php</span> <span style="color: #000000;">echo</span> get_post_meta<span style="color: #000000;">&#40;</span><span style="color: #000000;">$post</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">ID</span><span style="color: #000000;">,</span> <span style="color: #000000;">&quot;post_image&quot;</span><span style="color: #000000;">,</span> <span style="color: #000000;">true</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&quot; 
alt=&quot;Permanent Link to <span style="color: #000000;">&lt;?php</span> the_title<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&quot; /&gt;</pre></div></div>

<p>Very simple indeed! Now when I add this bit of code into my WP Loop you get the following&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:Consolas,Monaco,"Courier New",Courier,monospace;"><span style="color: #000000;">&lt;?php</span> <span style="color: #000000;">if</span> <span style="color: #000000;">&#40;</span> have_posts<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">:</span> <span style="color: #000000;">while</span> <span style="color: #000000;">&#40;</span> have_posts<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">:</span> the_post<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>
&nbsp;
&lt;div class=&quot;feature&quot;&gt;
&nbsp;
&lt;img src=&quot;<span style="color: #000000;">&lt;?php</span> <span style="color: #000000;">echo</span> get_post_meta<span style="color: #000000;">&#40;</span><span style="color: #000000;">$post</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">ID</span><span style="color: #000000;">,</span> <span style="color: #000000;">&quot;post_image&quot;</span><span style="color: #000000;">,</span> <span style="color: #000000;">true</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&quot; 
alt=&quot;Permanent Link to <span style="color: #000000;">&lt;?php</span> the_title<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&quot; /&gt;
&nbsp;
&lt;p class=&quot;feature-title&quot;&gt;&lt;a href=&quot;<span style="color: #000000;">&lt;?php</span> the_permalink<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">?&gt;</span>&quot; rel=&quot;bookmark&quot; 
title=&quot;Permanent Link to <span style="color: #000000;">&lt;?php</span> the_title<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&quot;&gt;<span style="color: #000000;">&lt;?php</span> the_title<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&lt;/a&gt;&lt;/p&gt;	
&nbsp;
&lt;p class=&quot;feature-preview&quot;&gt;<span style="color: #000000;">&lt;?php</span> the_excerpt<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #000000;">?&gt;</span>&lt;/p&gt;
&nbsp;
&lt;/div&gt;
&nbsp;
<span style="color: #000000;">&lt;?php</span> <span style="color: #000000;">endwhile</span>; <span style="color: #000000;">?&gt;</span></pre></div></div>

<p>Here is what you see on screen in my case&#8230;</p>
<img alt="" src="http://selfconclusion.co.uk/images/posts/customfields/working.jpg" width="316" height="288" style="border: 2px solid rgb(204, 204, 204); align:center; margin-bottom:20px;" />
<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>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F12%2Fwp-custom-fields%2F';
  addthis_title  = 'Working+with+Custom+Fields+in+WP';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/12/wp-custom-fields/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Favourite Albums of 2008</title>
		<link>http://selfconclusion.co.uk/2008/12/albums08/</link>
		<comments>http://selfconclusion.co.uk/2008/12/albums08/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 00:03:31 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=199</guid>
		<description><![CDATA[As 2008 comes to a close, I thought it would be cool to look back at some of the albums that have really taken a beating on my iPod/iTunes over the last twelve months and share them with you! I just wanna start off by saying that I am not very good with words so I will not be reviewing these albums, just purely bringing them to your attention and which song's you have to check out.]]></description>
			<content:encoded><![CDATA[<p>As 2008 comes to a close, I thought it would be cool to look back at some of the albums that have really taken a beating on my iPod/iTunes over the last twelve months and share them with you! I just wanna start off by saying that I am not very good with words so I will not be reviewing these albums, just purely bringing them to your attention and which song&#8217;s you have to check out.</p>
<p>For someone who loves to discover new artists/albums, I hope some of the following artists have the same effect on you guys. The albums mentioned below cover a wide range of Genre&#8217;s so possibly something for everyone&#8230;</p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/ss.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Secondhand Serenade</span><br />
<span class="album-artist"><strong>Album Title: </strong>A Twist In My Story</span><br />
<span class="album-artist"><strong>Genre: </strong>Acoustic</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Your Call, Fall For You, Stay Close, Don&#8217;t Go</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/secondhandserenade" target="_blank">MySpace</a> | <a href="http://www.purevolume.com/secondhandserenade" target="_blank">purevolume</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/emptystar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/thecab.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>The Cab</span><br />
<span class="album-artist"><strong>Album Title: </strong>Whisper War</span><br />
<span class="album-artist"><strong>Genre: </strong>Pop Punk / Powerpop</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>One Of THOSE Nights, I&#8217;ll Run, Risky Business</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/thecab" target="_blank">MySpace</a> | <a href="http://www.purevolume.com/thecab" target="_blank">purevolume</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/emptystar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/courteeners.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>The Courteeners</span><br />
<span class="album-artist"><strong>Album Title: </strong>St. Jude</span><br />
<span class="album-artist"><strong>Genre: </strong>Indie Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Bide Your Time, Please Don&#8217;t, Not Nineteen Forever</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/thecourteeners" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/The+Courteeners" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/konk.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>The Kooks</span><br />
<span class="album-artist"><strong>Album Title: </strong>Konk</span><br />
<span class="album-artist"><strong>Genre: </strong>Indie Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Sway, Gap, Mr Maker, Shine On</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/thekooks" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/The+Kooks" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/unfold.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Marie Digby</span><br />
<span class="album-artist"><strong>Album Title: </strong>Unfold</span><br />
<span class="album-artist"><strong>Genre: </strong>Pop / Piano Pop</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Say It Again, Beauty in Walking Away, Better Off Alone</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/mariedigby" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/Marie+Digby" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/halfstar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/augustana.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Augustana</span><br />
<span class="album-artist"><strong>Album Title: </strong>Can&#8217;t Love, Can&#8217;t Hurt</span><br />
<span class="album-artist"><strong>Genre: </strong>Piano Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Sweet and Low, Twenty Years, Hey Now</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/augustana" target="_blank">MySpace</a> | <a href="http://www.purevolume.com/augustana" target="_blank">purevolume</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/emptystar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/subways.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>The Subways</span><br />
<span class="album-artist"><strong>Album Title: </strong>All or Nothing</span><br />
<span class="album-artist"><strong>Genre: </strong>Indie Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Alright, Shake! Shake!</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/thesubways" target="_blank">MySpace</a> | <a href="http://www.purevolume.com/thesubways" target="_blank">purevolume</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/emptystar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/boyce.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Boyce Avenue</span><br />
<span class="album-artist"><strong>Album Title: </strong>All Youre Meant To Be</span><br />
<span class="album-artist"><strong>Genre: </strong>Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>On My Way, Dare to Beleive, All The While, Change Your Mind</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/boyceavenue" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/Boyce+Avenue" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/jacks.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Jack&#8217;s Mannequin</span><br />
<span class="album-artist"><strong>Album Title: </strong>The Glass Passenger</span><br />
<span class="album-artist"><strong>Genre: </strong>Alternative Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>The Resolution, Spinning, American Love</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/jacksmannequin" target="_blank">MySpace</a> | <a href="http://www.purevolume.com/jacksmannequin" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/script.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>The Script</span><br />
<span class="album-artist"><strong>Album Title: </strong>Self Titled</span><br />
<span class="album-artist"><strong>Genre: </strong>Pop Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Before The Worst, Breakeven, If You See Kay, We Cry</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/thescript" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/The+Script" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/kings.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Kings of Leon</span><br />
<span class="album-artist"><strong>Album Title: </strong>Only by the Night</span><br />
<span class="album-artist"><strong>Genre: </strong>Rock</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Use Somebody, Manhattan, Sex On Fire</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/kingsofleon" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/Kings+of+Leon" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/halfstar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/cruz.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Taio Cruz</span><br />
<span class="album-artist"><strong>Album Title: </strong>Departure</span><br />
<span class="album-artist"><strong>Genre: </strong>R&#038;B</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Like A Star, I Can Be, I Just Wanna Know</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/taiocruzmusic" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/Taio+Cruz" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/emptystar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/sarab.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Sara Bareilles</span><br />
<span class="album-artist"><strong>Album Title: </strong>Little Voice</span><br />
<span class="album-artist"><strong>Genre: </strong>Pop</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Love Song, Vegas, One Sweet Love</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/sarabareilles" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/Sara+Bareilles" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/emptystar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/offspring.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>The Offspring</span><br />
<span class="album-artist"><strong>Album Title: </strong>Rise and Fall, Rage and Grace</span><br />
<span class="album-artist"><strong>Genre: </strong>Pop</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Love Song, Vegas, One Sweet Love</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/offspring" target="_blank">MySpace</a> | <a href="http://www.last.fm/music/The+Offspring" target="_blank">Last.fm</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/halfstar.png" alt="" width="10" height="10" /></span></p>
<p class="album"><img class="cover" src="http://selfconclusion.co.uk/images/posts/albums/driving.jpg" alt="" align="left" /><span class="album-artist"><strong>Artist: </strong>Driving East</span><br />
<span class="album-artist"><strong>Album Title: </strong>The Future Of The Free World Is Riding On This One</span><br />
<span class="album-artist"><strong>Genre: </strong>Pop Punk</span><br />
<span class="album-artist"><strong>Favourite Songs: </strong>Hey, Come On Come On, Baby (Just A Little Bit), Backseat</span><br />
<span class="album-artist"><strong>Listen: </strong><a href="http://www.myspace.com/drivingeast" target="_blank">MySpace</a> | <a href="http://www.purevolume.com/drivingeast" target="_blank">Purevolume</a></span><br />
<span class="album-artist"><strong>Rating: </strong><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/star.png" alt="" width="10" height="10" /><img src="http://selfconclusion.co.uk/images/posts/albums/halfstar.png" alt="" width="10" height="10" /></span></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F12%2Falbums08%2F';
  addthis_title  = 'Favourite+Albums+of+2008';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/12/albums08/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Guest Post on ImJustCreative.com</title>
		<link>http://selfconclusion.co.uk/2008/11/nerdpress-guest-post/</link>
		<comments>http://selfconclusion.co.uk/2008/11/nerdpress-guest-post/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 12:41:10 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Featured]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=180</guid>
		<description><![CDATA[Yesterday, my very first Guest Post went live! The post titled "(Nerd)Press The Nerdiest WordPress Theme Around" talks about the progression of my first WP theme I am currently developing. I focus the post on several features as well as where I am hoping to go with it.

I just wanted to say thanks to Graham Smith of ImJustCreative.com, for been the legend that he is and allowing me to put some content up on his site, as well as the promoting he has been doing for the post too!. Check it out for yourself at http://imjustcreative.com and let me know what you think :)]]></description>
			<content:encoded><![CDATA[<p>Yesterday, my very first Guest Post went live! The post titled &#8220;(Nerd)Press The Nerdiest WordPress Theme Around&#8221; talks about the progression of my first WP theme I am currently developing. I focus the post on several features as well as where I am hoping to go with it.</p>
<p>I just wanted to say thanks to <a href="http://twitter.com/imjustcreative" target="_blank">Graham Smith</a> of <a href="http://ImJustCreative.com" target="_blank">ImJustCreative.com</a>, for been the legend that he is and allowing me to put some content up on his site, as well as the promoting he has been doing for the post too!. Check it out for yourself at <a href="http://imjustcreative.com/nerdpress-wordpress-theme-guest-post/2008/11/10/" target="_blank">http://imjustcreative.com</a> and let me know what you think <img src='http://selfconclusion.co.uk/wp-content/plugins/smilies-themer/MSN-Messenger/msn_smiley.png' alt=':)' class='wp-smiley' /> </p>
<p>Alternatively spread the word using any of the following&#8230;</p>
<ul>
<li>Stumble - <a href="http://is.gd/6Yo5" target="_blank">http://is.gd/6Yo5</a></li>
<li>Digg - <a href="http://is.gd/70N8" target="_blank">http://is.gd/70N8</a></li>
<li>Float - <a href="http://lin.cr/8fz" target="_blank">http://lin.cr/8fz</a></li>
<li>Bump - <a href="http://is.gd/70M5" target="_blank">http://is.gd/70M5</a></li>
<li>zaBox - <a href="http://is.gd/6YeK" target="_blank">http://is.gd/6YeK</a></li>
</ul>
<p>Thanks to all who have already started spreading and/or leaving feedback! So far I&#8217;ve had good comments! If you have any things you think would go well on (Nerd)Press let me know by adding me on Twitter (<a href="http://www.twitter.com/stugreenham" target="_blank">@stugreenham</a>)</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F11%2Fnerdpress-guest-post%2F';
  addthis_title  = 'Guest+Post+on+ImJustCreative.com';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/11/nerdpress-guest-post/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I Love My iPhone! But&#8230;..</title>
		<link>http://selfconclusion.co.uk/2008/10/i-love-my-iphone-but/</link>
		<comments>http://selfconclusion.co.uk/2008/10/i-love-my-iphone-but/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 21:35:50 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Featured]]></category>

		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=157</guid>
		<description><![CDATA[The most annoying thing is that, although it can take, even edit  (thanks to certain apps) photos, it lacks the ability to send them to my mates via MMS. Fair enough, I could still take a snap and Email to a friend, or maybe even upload to my Facebook for everyone to see, but there have been many times where I have needed this function.]]></description>
			<content:encoded><![CDATA[<p><strong>&#8230;it doesnt have MMS</strong></p>
<p>The most annoying thing is that, although it can take, even edit  (thanks to certain apps) photos, it lacks the ability to send them to my mates via MMS. Fair enough, I could still take a snap and Email to a friend, or maybe even upload to my Facebook for everyone to see, but there have been many times where I have needed this function.</p>
<p>Fortunately I am not alone on this, the guys over at <a href="http://iphonemms.net/" target="_blank">http://iphonemms.net/</a> have developed a Web App for the iPhone which will allow you to send MMS, but unfortunately it isn&#8217;t free. They also have an actually Application in the works which will no doubt soon be appearing on the iTunes App Store. I have a few friends who have used this service to date and they have confirmed it does work.</p>
<p><strong>&#8230;I still cannot get new ringtones because I&#8217;m from the U.K!</strong></p>
<p>I am someone who likes a different ringtone each week, my song tastes are changing so frequently that my iPhone needs to keep up. If you have ever tried to create a Ringtone in iTunes, you may have experienced the following error message&#8230;</p>
<p><img class="alignleft" title="iTunes Ringtone Error" src="http://selfconclusion.co.uk/images/posts/sc-ringtoneerror.jpg" alt="" width="470" height="120" /></p>
<p>According to Apple, this is not because of a Network Connection, but in fact due to the fact I live in the UK and ringtones aren&#8217;t availble for me. Six months after first noticing this error, I am still no further on! If it hadn&#8217;t been for a great bit of software called <a title="iToner from Ambrosia" href="http://www.ambrosiasw.com/utilities/itoner/" target="_blank">iToner</a>, my iPhone would still be blurting out that same noise that would of eventually led me to insanity.</p>
<p><strong>&#8230;the Battery life ain&#8217;t pretty!</strong></p>
<p>Now a decent Battery life is essential to any decent gadget! I will admit, since upgrading to the 3G version, the battery life seemed better, but not great! I am finding myself nervously worried about using any of the newer features like the built in GPS, purely because it sucks the life out of the thing! this leads me onto my four and final moan of the day&#8230;<strong></strong></p>
<p><strong>&#8230;the Google Maps doesn&#8217;t auto move to the next direction!</strong></p>
<p>This isn&#8217;t major as I don&#8217;t really use the Maps app unless in emergency travel situations, but it frustrates me because Google should have thought its users would need this feature. For example, If you are driving and you have your iPhone nicely cradled on your cars dashboard showing you where your heading, the last thing you would want to do it have to click the -&gt; arrow everytime you want to see the next turn, because this is dangerous! The location based service should automatically move to the next set of instructions allowing you to concetrate on the driving side of things.</p>
<p><strong>&#8230;now I&#8217;m tired and off to bed <img src='http://selfconclusion.co.uk/wp-content/plugins/smilies-themer/MSN-Messenger/msn_smiley.png' alt=':)' class='wp-smiley' /> </strong></p>
<p>Well I am tired now so I&#8217;m gonna end here, for today anyway! Okay Okay, this may seem like a negative post, and for any people reading who have been umming and arring about whether or not to get an iPhone, please don&#8217;t let this put you off! This truely is the best phone! and the pro&#8217;s outway the negs by sooooo many! But these are a few things that I feel let the side down on Apple&#8217;s end. So come on Jobs get it sorted!</p>
<p>Finally, I came across an interesting site whilst writing this post, which is <a href="http://pleasefixtheiphone.com" target="_blank">http://pleasefixtheiphone.com</a>, which shows me that I am not the only one. The site, based around its users submissions, focuses on how the iPhone could be &#8216;fixed&#8217;, check it out if you are an iPhone user with issues. I personally don&#8217;t think the iPhone needs fixing at all, I would probably have called the site http://pleaseupdatetheiphone.com or something along that line! Anyway&#8217;s let me know what you think about the iPhone and if you want me to add anything onto this post. Woop!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F10%2Fi-love-my-iphone-but%2F';
  addthis_title  = 'I+Love+My+iPhone%21+But%26%238230%3B..';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/10/i-love-my-iphone-but/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Removing the Dotted Hyperlink Borders</title>
		<link>http://selfconclusion.co.uk/2008/10/removing-the-dotted-hyperlink-borders/</link>
		<comments>http://selfconclusion.co.uk/2008/10/removing-the-dotted-hyperlink-borders/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 10:53:58 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=132</guid>
		<description><![CDATA[I love Firefox, it is my favoured browser but there is one little thing that really frustrates me, especially from a designer point of view. You may, or may not have noticed that the browser adds a dotted border around hyperlinks that only become visible upon activating the link. For many this is probably not a problem as its not exactly causing any problems to anyone, but I don't like it.]]></description>
			<content:encoded><![CDATA[<p>I love Firefox, it is my favoured browser but there is one little thing that really frustrates me, especially from a designer point of view. You may, or may not have noticed that the browser adds a dotted border around hyperlinks that only become visible upon activating the link. For many this is probably not a problem as its not exactly causing any problems to anyone, but I don&#8217;t like it.</p>
<p><img class="alignnone" title="Example of Hyperlink Border in Firefox" src="http://selfconclusion.co.uk/wp-content/themes/default/images/posts/blog/hyperlinks.png" alt="" width="500" height="99" /></p>
<p>To remove this border, all you need to do is add the two lines of code shown below to your sites Stylesheet and wahlaaa, gone! Many of the big sites haven&#8217;t even bothered to do this, a few to mention are <a title="Microsoft Homepage" href="http://www.microsoft.com" target="_blank">Microsoft</a>, <a title="Twitter Homepage" href="http://www.twitter.com" target="_blank">Twitter</a> and <a title="YouTube Homepage" href="http://www.youtube.com" target="_blank">YouTube</a>.</p>
<p>Anyways, here is the code&#8230;</p>
<p><code>a:active { outline: none; }<br />
a:focus { -moz-outline-style: none; }</code></p>
<p>I would be greatful if you could take a second to help promote my blog and share this link with any of your favoured networking sites using the link below&#8230;</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F10%2Fremoving-the-dotted-hyperlink-borders%2F';
  addthis_title  = 'Removing+the+Dotted+Hyperlink+Borders';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/10/removing-the-dotted-hyperlink-borders/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Self Conlusion WP Plugins (Part. 1)</title>
		<link>http://selfconclusion.co.uk/2008/09/self-conlusion-wp-plugins-part-1/</link>
		<comments>http://selfconclusion.co.uk/2008/09/self-conlusion-wp-plugins-part-1/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 15:40:00 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=126</guid>
		<description><![CDATA[Following on from my last few posts on WordPress, I thought I would talk about the various Plugins that I frequently use, and imparticular, the Plugins that are built into Self Conclusion, as I have several sections which import information from various social sites such as Last.FM, Delicious and Flickr.]]></description>
			<content:encoded><![CDATA[<p>Following on from my last few posts on WordPress, I thought I would talk about the various Plugins that I frequently use, and imparticular, the Plugins that are built into Self Conclusion, as I have several sections which import information from various social sites such as Last.FM, Delicious and Flickr.</p>
<h4>Akismet</h4>
<p>I will start with the Self Conclusion Plugins, I just briefly want to mention the first plugin, which is actually one that comes built into WordPress. The Akismet plugin is often missed by alot of newcomers to WordPress but it is infact very useful for filtering out the dreaded SPAM comments. Once activated, you are required to register for a WordPress.com account, so you can retreive an API Key which will need to be entered into the Akismet Configuration page.</p>
<p><img style="border: 2px solid #cccccc;" src="http://selfconclusion.co.uk/wp-content/themes/default/images/posts/wp-plugins/askimet.png" alt="Akismet WP Plugin" width="500" height="212" /></p>
<p>The image above is just a snippet from my Akismet page and you can see that two messages there are clearly junk, and Akismet has marked them as Spam, meaning I don&#8217;t have to deal with them.</p>
<p>The next set of plugins are by Ricardo González over at <a title="WordPress Plugins" href="http://rick.jinlabs.com/code/" target="_blank">Rick&#8217;s HideOut</a>. They deal with Twitter, Last.FM and Delicious Feeds, and require minimal setup.</p>
<h4>Twitter Plugin for WordPress</h4>
<p>I use this plugin to display the large &#8216;Twitter&#8217; text at the top on my Homepage. The plugin doesn&#8217;t deal with the formatting of this text, it simply grabs it from your Twitter account and displays it on your blog. To install, download the plugin from the link below and upload it to your WordPress Plugins directory (eg. http://www.domainname.com/wp-content/plugins). Now go to your WP Admin area and activate the Plugin. To Display your Twitter status, simply insert the following code between a set of PHP Tags into your page, replacing the username:</p>
<p><code>twitter_messages('username'); </code></p>
<p>This ofcourse is only the very minimal settings on this plugin, as there are many attributes you can tweak which can be found on the Plugin page here <a title="Twitter for WordPress" href="http://rick.jinlabs.com/code/twitter/" target="_blank">http://rick.jinlabs.com/code/twitter/</a>.</p>
<h4>Last.FM for WordPress</h4>
<p>Similar process to the Twitter plugin, but this displays the recent tracks Scrobbled on your Last.FM account, in my code, I set it to display the latest 7 tracks. To install, download the plugin from the link  below and upload it to your WordPress Plugins directory (eg. http://www.domainname.com/wp-content/plugins). Now go to your WP Admin area and activate the Plugin. Inserting it into your blog couldn&#8217;t be easier (Don&#8217;t forget the PHP Tags):</p>
<p><code>lastfm_tracks('username');</code></p>
<p>Again, there are many other attributes which can be set such as how many tracks to display. These can be found here <a title="Last.FM for WordPress" href="http://rick.jinlabs.com/code/lastfm/" target="_blank">http://rick.jinlabs.com/code/lastfm/</a><a title="Last.FM for WordPress" href="http://rick.jinlabs.com/code/lastfm/" target="_blank"></a>.</p>
<h4>Delicious for WordPress</h4>
<p>The final plugin I want to mention from Ricardo is &#8216;Delicious for WordPress&#8217;. I won&#8217;t go into to much detail because the process of setting it up and building it into your blog is exactly the same as the previous two plugins, but using the following code (again put this code between a set of PHP tags):</p>
<p><code>delicious_bookmarks('username');</code></p>
<p>Like the previous two Plugins, the code above only deals with the default values, to tweak it further, visit the following page <a title="Delicious for WordPress" href="http://rick.jinlabs.com/code/delicious/" target="_blank">http://rick.jinlabs.com/code/delicious/</a>.</p>
<h4>More To Follow&#8230;.</h4>
<p>Right, thats it for this post, be sure to keep checking for Part 2 when I talk about the other Plugins I use on Self Conclusion, and other more favoured Plugins I have used in the past. I&#8217;d love to hear about any plugins you guys use or if you also use some of the ones I have mentioned and what you think of them.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F09%2Fself-conlusion-wp-plugins-part-1%2F';
  addthis_title  = 'Self+Conlusion+WP+Plugins+%28Part.+1%29';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/09/self-conlusion-wp-plugins-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress .XML Test Data Import</title>
		<link>http://selfconclusion.co.uk/2008/09/wordpress-xml-import-download/</link>
		<comments>http://selfconclusion.co.uk/2008/09/wordpress-xml-import-download/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 23:22:44 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Featured]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Websites]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?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 <img src='http://selfconclusion.co.uk/wp-content/plugins/smilies-themer/MSN-Messenger/msn_sad.png' alt=':(' class='wp-smiley' /> </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://selfconclusion.co.uk/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>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F09%2Fwordpress-xml-import-download%2F';
  addthis_title  = 'WordPress+.XML+Test+Data+Import';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/09/wordpress-xml-import-download/feed/</wfw:commentRss>
		</item>
		<item>
		<title>(Nerd)Press - My Own WP Theme</title>
		<link>http://selfconclusion.co.uk/2008/09/nerdpress-my-own-wp-theme/</link>
		<comments>http://selfconclusion.co.uk/2008/09/nerdpress-my-own-wp-theme/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 12:04:41 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Websites]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=100</guid>
		<description><![CDATA[I've been saying to myself for a year or so now that I would develop my own WordPress theme to distribute on the web. Well, I recently have had my tonsels out which has meant lots of time has been spent either in bed, or lounging around the house (be it in pain but still). The other day I decided I finally started, and three days in its going really well!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been saying to myself for a year or so now that I would develop my own WordPress theme to distribute on the web. Well, I recently have had my tonsels out which has meant lots of time has been spent either in bed, or lounging around the house (be it in pain but still). The other day I decided I finally started, and three days in its going really well!</p>
<p>The name of my first WordPress theme is <a title="(Nerd)Press WordPress Theme" href="http://nerdpress.co.uk" target="_blank">(Nerd)Press</a>, inspired by the TV show Chuck which I was watching at the time. So far I have working index and single-post pages, as well as working navigation, sidebar and footer sections, and finally a hugggee search bar panning 800+ pixels but looks very neat. The searchbar itself slides down using the ever popular jQuery which I am loving! I have also registered http://nerdpress.co.uk for when its ready to go public, at present there is only a centered logo up there but I plan on having an Email submission box up soon for anyone wanting to receive updates on my progress.</p>
<p>Thats about it for now, but here is a screenshot of what I have so far.</p>
<p><a href="http://nerdpress.co.uk"><img class="alignnone" title="(Nerd)Press - Working Progress" src="http://stugreenham.com/webfolio/images/screenshots/(Nerd)Press.jpg" alt="" width="480" height="1030" /></a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F09%2Fnerdpress-my-own-wp-theme%2F';
  addthis_title  = '%28Nerd%29Press+-+My+Own+WP+Theme';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/09/nerdpress-my-own-wp-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Favourite iPhone Apps So Far</title>
		<link>http://selfconclusion.co.uk/2008/08/favourite-iphone-apps-so-far/</link>
		<comments>http://selfconclusion.co.uk/2008/08/favourite-iphone-apps-so-far/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 21:58:07 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=86</guid>
		<description><![CDATA[iPhone users will (or should) be aware that the 2.0 software for the device allows installation of a whole bunch of applications that are now available on iTunes, some free, some not. I went through the initial stage, as i'm sure most did where I just couldn't get enough applications, becoming greedy just to fill up my sexy iPhone screen with new icons! Well after a month or so since the update, here's my favourite ones...]]></description>
			<content:encoded><![CDATA[<p>iPhone users will (or should) be aware that the 2.0 software for the device allows installation of a whole bunch of applications that are now available on iTunes, some free, some not. I went through the initial stage, as i&#8217;m sure most did where I just couldn&#8217;t get enough applications, becoming greedy just to fill up my sexy iPhone screen with new icons! Well after a month or so since the update, here&#8217;s my favourite ones&#8230;</p>
<p><strong>Facebook</strong> - As a Facebook addict, this is the application I was looking forward to most, partly because my job often requires me to be out the office, and how else would I keep up to date with everyones business! Facebook have developed a nice clean user friendly app here, and already released version 1.2 update which brought several more features such as photo comments, more detailed profile view.</p>
<p style="text-align: center;"><img class="aligncenter" title="Facebook for iPhone" src="http://selfconclusion.co.uk/wp-content/themes/default/images/posts/fbookiphone.png" alt="" width="480" height="291" /></p>
<p>A cool feature is the ability to upload a picture straight from the application either by selecting a picture from your current photo&#8217;s, or using the built in Camera! Finally, this is free, so if you have an iPhone I don&#8217;t understand why you would have this! get it from the iTunes store right now!</p>
<p><strong>Google</strong> - Another free app, and one which I thought would be available to everyone on release day, but only the US were treated. A simple application that lets its user search not just straight to Google, but also the content on the iPhone, Locations, Images, News, Shopping and Wikipedia, which is awsum! and very handy! There is also a page on the App that gives you links to all of the other Google web apps available, like there Calendar, Reader, etc. Check it out, its a must!</p>
<p style="text-align: center;"><img class="aligncenter" title="Google for iPhone" src="http://selfconclusion.co.uk/wp-content/themes/default/images/posts/googleiphone.png" alt="" width="480" height="291" /></p>
<p style="text-align: left;"><strong>Remote</strong> - Final App for this post, but probably the most useful so far, and made by Apple themselves! The Remote application acts as the name states, as a remote, but for what you ask? well as long as your iPhone is connected to your Wireless network, it can control your iTunes without the need of getting up of your sofa to change a track. As shown below, you get full Artwork straight from your Library, and have access to all the content, and you are able to scroll through the Playlists, Artists, Songs and Albums. I think that one nice addition would be the coverflow then it would truely be a killer app!</p>
<p style="text-align: center;"><img class="aligncenter" title="Remote for the iPhone" src="http://selfconclusion.co.uk/wp-content/themes/default/images/posts/remoteiphone.png" alt="" width="480" height="291" /></p>
<p style="text-align: center;">
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F08%2Ffavourite-iphone-apps-so-far%2F';
  addthis_title  = 'Favourite+iPhone+Apps+So+Far';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/08/favourite-iphone-apps-so-far/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moving Mail from Apple to PC = Ball ache!</title>
		<link>http://selfconclusion.co.uk/2008/08/moving-mail-apple-to-pc/</link>
		<comments>http://selfconclusion.co.uk/2008/08/moving-mail-apple-to-pc/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 16:30:04 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=90</guid>
		<description><![CDATA[Well I can safely say I have broke the record for the amount of time spent copying email between computers! So far, 15 hours and counting. Thats right, 15! Why? Well partly because the guy I am doing it for has literally thousands of emails dating back to 1999 (there all over the place, fortunatly organized, but to a point where there are so many folders!), and partly because Entourage is crap.]]></description>
			<content:encoded><![CDATA[<p>Well I can safely say I have broke the record for the amount of time spent copying email between computers! So far, 15 hours and counting. Thats right, 15! Why? Well partly because the guy I am doing it for has literally thousands of emails dating back to 1999 (there all over the place, fortunatly organized, but to a point where there are so many folders!), and partly because Entourage is crap.</p>
<p>Entourage, if your not familiar with, is the Email client that comes with Mac versions of Microsoft Office Packages, something I have never understood! I think it falls so short on the mark compared to Microsoft&#8217;s Outlook, and I would personally use Outlook on the Mac as I have an Exchange account setup with my work.</p>
<p>The whole reason behind this transfer was because the company I work for had just installed a Server and as a result all the users were put onto Exchange Email. Previously, Email had been coming in using POP3, so there was no possibility of downloading all the email straight onto the Exchange. I located the Email from Entourage which Microsoft store in a folder called &#8216;<strong>Microsoft User Data&#8217;</strong> within the User Documents folder. In here each folder is stored in a <strong>.mbox</strong> file, which suprise suprise Outlook doesn&#8217;t like.</p>
<p>Next I searched for a method of transferring .mbox into a format that Outlook would take kindly, but it soon became apparent that I was fighting a lost cause! So I decided I would enable IMAP (Entourage 2001 doesn&#8217;t allow Exchange accounts) on the Exchange account and setup the new email address straight into Entourage at which point I would begin transferring files straight over, simple right? Not exactly! It wouldn&#8217;t allow me to drag the folders from the POP account into the IMAP one, meaning I had to do create each folder and copy its content manually. Here are my steps that I took to ensure mail was properly transferred from a POP account in Entourage 2001 to an Exchange Account in Outlook:</p>
<ul>
<li>First, enable IMAP on the server Exchange Account</li>
<li>Next, Add the IMAP account into Entourage as an additional Mailbox</li>
<li>Under the IMAP account folder list, right click and add relevant Folders and Subfolders, as it looks in the POP account (for example, if the POP account has folders &#8216;Work&#8217; and &#8216;Personal&#8217;, then these will need to be created in the IMAP account)</li>
<li>Select one folder at a time, highlight all the emails within that folder and drag onto the same folder in the IMAP account, this was very sluggish for me, especially folders with several thousand emails in.</li>
</ul>
<p>This method is very time consuming and possibly not the most efficient way to get the mail transferred but it was the only way I could assure the whole of the mail content would move across in tact. If anyone knows of an easier method I would love to know! Till then we have to deal with the fact that Entourage is not friendly to Outlook even though they are both Microsoft! Daft I know!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fselfconclusion.co.uk%2F2008%2F08%2Fmoving-mail-apple-to-pc%2F';
  addthis_title  = 'Moving+Mail+from+Apple+to+PC+%3D+Ball+ache%21';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2008/08/moving-mail-apple-to-pc/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
