<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments on: Thesis Video Tutorial: Customize Thesis with Wordpress Custom Fields</title>
	<atom:link href="http://www.artofblog.com/thesis-video-tutorial-customize-thesis-with-wordpress-custom-fields/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.artofblog.com/thesis-video-tutorial-customize-thesis-with-wordpress-custom-fields/</link>
	<description>The Art of How to Start and Run a Blog</description>
	<lastBuildDate>Fri, 30 Jul 2010 22:32:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nick Tzu</title>
		<link>http://www.artofblog.com/thesis-video-tutorial-customize-thesis-with-wordpress-custom-fields/#comment-428</link>
		<dc:creator>Nick Tzu</dc:creator>
		<pubDate>Fri, 07 Aug 2009 13:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.artofblog.com/?p=216#comment-428</guid>
		<description>Daniel,

I would suggest reading these two tutorials. the first goes over the basics of the loop. (the core code that makes Wordpress display posts). The second one goes into detail on how to create custom loops, which is what we use in this tutorial.

http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/
http://weblogtoolscollection.com/archives/2008/04/13/define-your-own-wordpress-loop-using-wp_query/

Hope this will make things a little more clear, if it isn&#039;t i&#039;ll try and make a tutorial explaining the loop.</description>
		<content:encoded><![CDATA[<p>Daniel,</p>
<p>I would suggest reading these two tutorials. the first goes over the basics of the loop. (the core code that makes Wordpress display posts). The second one goes into detail on how to create custom loops, which is what we use in this tutorial.</p>
<p><a href="http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/" rel="nofollow">http://www.themelab.com/2008/04/04/the-ultimate-guide-to-the-wordpress-loop/</a><br />
<a href="http://weblogtoolscollection.com/archives/2008/04/13/define-your-own-wordpress-loop-using-wp_query/" rel="nofollow">http://weblogtoolscollection.com/archives/2008/04/13/define-your-own-wordpress-loop-using-wp_query/</a></p>
<p>Hope this will make things a little more clear, if it isn&#8217;t i&#8217;ll try and make a tutorial explaining the loop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Balfour</title>
		<link>http://www.artofblog.com/thesis-video-tutorial-customize-thesis-with-wordpress-custom-fields/#comment-426</link>
		<dc:creator>Daniel Balfour</dc:creator>
		<pubDate>Fri, 07 Aug 2009 02:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.artofblog.com/?p=216#comment-426</guid>
		<description>Nick,

Thanks for taking the time to write this out. I think I&#039;m missing some basic information because I&#039;m just not getting it. I looked up WP_Query() but again, it&#039;s just over my head (I do know some basic PHP just not WordPress structure). Do you know of any basic (from the ground up) tutorial that goes through this with a simple, step-by-step example? Or perhaps you&#039;d care to make one?

I think you&#039;re gonna make some great tuts man! you&#039;ve &#039;got it&#039;. Stick with it.</description>
		<content:encoded><![CDATA[<p>Nick,</p>
<p>Thanks for taking the time to write this out. I think I&#8217;m missing some basic information because I&#8217;m just not getting it. I looked up WP_Query() but again, it&#8217;s just over my head (I do know some basic PHP just not WordPress structure). Do you know of any basic (from the ground up) tutorial that goes through this with a simple, step-by-step example? Or perhaps you&#8217;d care to make one?</p>
<p>I think you&#8217;re gonna make some great tuts man! you&#8217;ve &#8216;got it&#8217;. Stick with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Tzu</title>
		<link>http://www.artofblog.com/thesis-video-tutorial-customize-thesis-with-wordpress-custom-fields/#comment-430</link>
		<dc:creator>Nick Tzu</dc:creator>
		<pubDate>Thu, 06 Aug 2009 21:06:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.artofblog.com/?p=216#comment-430</guid>
		<description>Daniel,
I&#039;ll do my best to explain what is going on here. Like I mentioned I&#039;m no php guru, but I get it a bit.

Essentially where we define a custom query starting with the line &quot;my_custom_query&quot; we ask wordpress to give us the most recent post. This takes the place of the post id.

The while statement will walk through this post (and more if you queried more) and do whatever is between the begin &quot;while&quot; and the &quot;endwhile.&quot;

In this example we are looking to get the custom wordpress field &quot;thesis_post_image&quot; which is where thesis stores the information on the post image you upload. $key is the name of the custom field you are using.

What we do then is use the wordpress query &quot;get_post_custom_values&quot; for the key. This will return as an array. Of this array we want the first entry and we asign it to $featuredimage. We then echo out the featured image.

Hope this makes it a bit clearer, that video was recorded VERY quickly with no rehersal or plan, I wanted to get it out and was pushed for time.

Let me know if you have more questions.</description>
		<content:encoded><![CDATA[<p>Daniel,<br />
I&#8217;ll do my best to explain what is going on here. Like I mentioned I&#8217;m no php guru, but I get it a bit.</p>
<p>Essentially where we define a custom query starting with the line &#8220;my_custom_query&#8221; we ask wordpress to give us the most recent post. This takes the place of the post id.</p>
<p>The while statement will walk through this post (and more if you queried more) and do whatever is between the begin &#8220;while&#8221; and the &#8220;endwhile.&#8221;</p>
<p>In this example we are looking to get the custom wordpress field &#8220;thesis_post_image&#8221; which is where thesis stores the information on the post image you upload. $key is the name of the custom field you are using.</p>
<p>What we do then is use the wordpress query &#8220;get_post_custom_values&#8221; for the key. This will return as an array. Of this array we want the first entry and we asign it to $featuredimage. We then echo out the featured image.</p>
<p>Hope this makes it a bit clearer, that video was recorded VERY quickly with no rehersal or plan, I wanted to get it out and was pushed for time.</p>
<p>Let me know if you have more questions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Balfour</title>
		<link>http://www.artofblog.com/thesis-video-tutorial-customize-thesis-with-wordpress-custom-fields/#comment-429</link>
		<dc:creator>Daniel Balfour</dc:creator>
		<pubDate>Thu, 06 Aug 2009 20:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.artofblog.com/?p=216#comment-429</guid>
		<description>Man... that&#039;s really complicated. I totally lost you with the $my_custom_query = new WP_Query(&#039;showposts=1&#039;); I mean what are you doing there? How are you getting $key or the post-ID?

I think Thesis is a nice WP theme but it&#039;s way to closed off and proprietary to be considered a framework.</description>
		<content:encoded><![CDATA[<p>Man&#8230; that&#8217;s really complicated. I totally lost you with the $my_custom_query = new WP_Query(&#8217;showposts=1&#8242;); I mean what are you doing there? How are you getting $key or the post-ID?</p>
<p>I think Thesis is a nice WP theme but it&#8217;s way to closed off and proprietary to be considered a framework.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
