<?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; custom fields</title>
	<atom:link href="http://www.euclidsfifth.com/tag/custom-fields/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>
	</channel>
</rss>

