<?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>Euclids Fifth &#187; blog</title>
	<atom:link href="http://www.euclidsfifth.com/tag/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.euclidsfifth.com</link>
	<description>Development and Design</description>
	<lastBuildDate>Tue, 20 Sep 2011 04:55:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Custom Field Hacks For WordPress</title>
		<link>http://www.euclidsfifth.com/development/custom-field-hacks-for-wordpress/</link>
		<comments>http://www.euclidsfifth.com/development/custom-field-hacks-for-wordpress/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 04:55:54 +0000</pubDate>
		<dc:creator>Kyle Smith</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[custom fields]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wprecipes.com]]></category>

		<guid isPermaLink="false">http://euclidsfifth.com/?p=288</guid>
		<description><![CDATA[Custom fields are a great little thing. They allow you to easily customize your blog with only a little bit of code.  Below is a succinct explanation on how to do it, courtesy <a title="WP Recipes" href="http://www.wprecipes.com/how-to-display-your-current-mood-on-your-posts" target="_blank">wprecipes.com</a>]]></description>
			<content:encoded><![CDATA[<p>Custom fields are a great little thing. They allow you to easily customize your blog with only a little bit of code.  Below is a succinct explanation on how to do it, courtesy <a title="WP Recipes" href="http://www.wprecipes.com/how-to-display-your-current-mood-on-your-posts" target="_blank">wprecipes.com</a></p>
<div class="content">
<blockquote><p>Open your single.php file (You can also modify your index.php file) and paste the following code anywhere within the loop:</p>
<pre>$customField = get_post_custom_values("mood");
if (isset($customField[0])) {
echo "Mood: ".$customField[0];</pre>
<p>Save the file. Now when you&#8217;ll write a new post, just create a custom field named <em>mood</em> and type your current mood as a value.</p></blockquote>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.euclidsfifth.com/development/custom-field-hacks-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs</title>
		<link>http://www.euclidsfifth.com/develop/blogs/</link>
		<comments>http://www.euclidsfifth.com/develop/blogs/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 03:15:05 +0000</pubDate>
		<dc:creator>Kyle Smith</dc:creator>
				<category><![CDATA[Develop]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.euclidsfifth.com/?p=768</guid>
		<description><![CDATA[Setting up a blog for the first time is really simple. WordPress touts a 5 minute install, and they are right, it really does only take 5 minutes. But what happens after that? [arrow_list] What plug-ins do I use? How do I implement a custom theme? How can I add a list of related posts? [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up a blog for the first time is really simple. WordPress touts a 5 minute install, and they are right, it really does only take 5 minutes. But what happens after that?</p>
<p>[arrow_list]</p>
<ul>
<li>What plug-ins do I use?</li>
<li>How do I implement a custom theme?</li>
<li>How can I add a list of related posts?</li>
<li>What is a custom widget?</li>
<li>Why doesn&#8217;t my sticky post, stick?</li>
</ul>
<p>[/arrow_list]</p>
<p>Thats where I come in.  I will guide you through the blog setup process and get you on your way.  I have experience in:</p>
<p>[arrow_list]</p>
<ul>
<li>Designing and implementing a custom themes.</li>
<li>Creating special plug-ins to deliver featured information.</li>
<li>Modifying existing templates to better fit the goals of the blog.</li>
<li>Developing unique widgets to implement lead generation.</li>
</ul>
<p>[/arrow_list]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.euclidsfifth.com/develop/blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs</title>
		<link>http://www.euclidsfifth.com/design/blog/</link>
		<comments>http://www.euclidsfifth.com/design/blog/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 01:51:25 +0000</pubDate>
		<dc:creator>Kyle Smith</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.euclidsfifth.com/?p=721</guid>
		<description><![CDATA[Blogs are a powerful force in cyberspace. Having a successfully designed and developed blog can put you ahead of the curve. But where to start? [arrow_list] What is a blog? How is a blog different from a website? Which blogging service do I choose? What are themes? How does it all work? [/arrow_list] The start [...]]]></description>
			<content:encoded><![CDATA[<p>Blogs are a powerful force in cyberspace. Having a successfully designed and developed blog can put you ahead of the curve. But where to start?</p>
<p>[arrow_list]</p>
<ul>
<li>What is a blog?</li>
<li>How is a blog different from a website?</li>
<li>Which blogging service do I choose?</li>
<li>What are themes?</li>
<li>How does it all work?</li>
</ul>
<p>[/arrow_list]</p>
<p>The start of the blogging process can be a bit overwhelming. I can guide you through this process, designing a blog that successfully expresses your company or individual personality. Creating a custom theme solution, or helping you to adapt one of the many existing themes on the web.</p>
<p>(This website is powered by <a title="WordPress" href="http://www.wordpress.org" target="_blank">WordPress</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.euclidsfifth.com/design/blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

