<?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: How To Add Image Thumbnail Using WordPress Custom Fields</title>
	<atom:link href="http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/</link>
	<description>Learn How To Increase Your Blog Earnings With No Extra Effort</description>
	<lastBuildDate>Wed, 04 Jan 2012 03:45:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: nero007</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-5113</link>
		<dc:creator>nero007</dc:creator>
		<pubDate>Sun, 11 Apr 2010 11:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-5113</guid>
		<description>Thank you so much. I&#039;m looking for the post just like this. It&#039;s so useful and adaptable. It&#039;s clear and really fix my problem. Bravo!</description>
		<content:encoded><![CDATA[<p>Thank you so much. I&#8217;m looking for the post just like this. It&#8217;s so useful and adaptable. It&#8217;s clear and really fix my problem. Bravo!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alisa</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3706</link>
		<dc:creator>Alisa</dc:creator>
		<pubDate>Sat, 22 Aug 2009 15:53:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3706</guid>
		<description>Thanks, Pinyo! Your code worked like a charm! I&#039;m not a techie at all, but was able to figure out how to do it based on your screenshots and instructions.

I also tried cmsdev&#039;s solution, and the code just ended up displaying on the index page. There is either code missing or I pasted it in the wrong place.</description>
		<content:encoded><![CDATA[<p>Thanks, Pinyo! Your code worked like a charm! I&#8217;m not a techie at all, but was able to figure out how to do it based on your screenshots and instructions.</p>
<p>I also tried cmsdev&#8217;s solution, and the code just ended up displaying on the index page. There is either code missing or I pasted it in the wrong place.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Places you can learn how to set up cool stuff using Wordpress custom fields &#124; Design strike</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3690</link>
		<dc:creator>Places you can learn how to set up cool stuff using Wordpress custom fields &#124; Design strike</dc:creator>
		<pubDate>Tue, 11 Aug 2009 18:57:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3690</guid>
		<description>[...] How To Add Image Thumbnail Using Wordpress Custom Fields [...]</description>
		<content:encoded><![CDATA[<p>[...] How To Add Image Thumbnail Using WordPress Custom Fields [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cmsdev</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3598</link>
		<dc:creator>cmsdev</dc:creator>
		<pubDate>Sat, 07 Mar 2009 23:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3598</guid>
		<description>You can do this without the meta-field workaround. Just querying the posts and get the images:

// get image post
$__query = &quot;SELECT ID FROM $wpdb-&gt;posts WHERE post_parent = &#039;&quot;.$post-&gt;ID.&quot;&#039; AND post_type = &#039;attachment&#039;&quot;;

$atid = $wpdb-&gt;get_var($__query);

if (wp_attachment_is_image($atid)) { 
  // 2nd attr = { thumbnail, medium, full }
  $image = wp_get_attachment_image_src( $atid, &#039;thumbnail&#039; );

  echo $image[&#039;url&#039;];
}</description>
		<content:encoded><![CDATA[<p>You can do this without the meta-field workaround. Just querying the posts and get the images:</p>
<p>// get image post<br />
$__query = &#8220;SELECT ID FROM $wpdb-&gt;posts WHERE post_parent = &#8216;&#8221;.$post-&gt;ID.&#8221;&#8216; AND post_type = &#8216;attachment&#8217;&#8221;;</p>
<p>$atid = $wpdb-&gt;get_var($__query);</p>
<p>if (wp_attachment_is_image($atid)) {<br />
  // 2nd attr = { thumbnail, medium, full }<br />
  $image = wp_get_attachment_image_src( $atid, &#8216;thumbnail&#8217; );</p>
<p>  echo $image['url'];<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3504</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Sat, 01 Nov 2008 01:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3504</guid>
		<description>You don&#039;t have to take this much headache for doing this. There is a plugin named &quot;Thumbnail for Excerpts&quot; available at www.cnet.ro/wordpress/thumbnailforexcerpts

Just install and activate.

You can see it in action on my blog.</description>
		<content:encoded><![CDATA[<p>You don&#8217;t have to take this much headache for doing this. There is a plugin named &#8220;Thumbnail for Excerpts&#8221; available at <a href="http://www.cnet.ro/wordpress/thumbnailforexcerpts" rel="nofollow">http://www.cnet.ro/wordpress/thumbnailforexcerpts</a></p>
<p>Just install and activate.</p>
<p>You can see it in action on my blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinyo</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3490</link>
		<dc:creator>Pinyo</dc:creator>
		<pubDate>Sat, 27 Sep 2008 00:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3490</guid>
		<description>I don&#039;t see what snapshot.com has anything to do with the article either.  I think you missed my point.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t see what snapshot.com has anything to do with the article either.  I think you missed my point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nugz4Life</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3489</link>
		<dc:creator>Nugz4Life</dc:creator>
		<pubDate>Fri, 26 Sep 2008 22:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3489</guid>
		<description>why on earth would anyone want to go to all that trouble when you can just use snapshot.com????  It takes two minutes and sows a thumbnail + rss feed of recent posts so user can get even more depth about the site before even clicking.</description>
		<content:encoded><![CDATA[<p>why on earth would anyone want to go to all that trouble when you can just use snapshot.com????  It takes two minutes and sows a thumbnail + rss feed of recent posts so user can get even more depth about the site before even clicking.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Blogging Guide - September 23, 2008 &#171; Create A Blog Guides</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3483</link>
		<dc:creator>WordPress Blogging Guide - September 23, 2008 &#171; Create A Blog Guides</dc:creator>
		<pubDate>Tue, 23 Sep 2008 10:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3483</guid>
		<description>[...] Bhulipongsanon presents How To Add Image Thumbnail Using WordPress Custom Fields posted at [...]</description>
		<content:encoded><![CDATA[<p>[...] Bhulipongsanon presents How To Add Image Thumbnail Using WordPress Custom Fields posted at [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinyo</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-3406</link>
		<dc:creator>Pinyo</dc:creator>
		<pubDate>Tue, 16 Sep 2008 02:53:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-3406</guid>
		<description>@Blog Newbie -- I&#039;m glad to hear it.  Very cool and thank you for your feedback.</description>
		<content:encoded><![CDATA[<p>@Blog Newbie &#8212; I&#8217;m glad to hear it.  Very cool and thank you for your feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blog Newbie</title>
		<link>http://www.blogthority.com/75/how-to-add-image-thumbnail-using-wordpress-custom-fields/comment-page-1/#comment-2294</link>
		<dc:creator>Blog Newbie</dc:creator>
		<pubDate>Tue, 26 Aug 2008 11:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogthority.com/?p=75#comment-2294</guid>
		<description>Thank You.

I have searched and read dozens of tutorials about how to add thumbnails. I&#039;m not php geek so most of them made no sense to me. Then I found your tutorial, straight to the point, simply and well explained. Thanks to your tutorial I figured it out and thumbs are now working fine on my blog.

Thanks again, blogthority is bookmarked  I&#039;ll come back next time I&#039;m struggling.</description>
		<content:encoded><![CDATA[<p>Thank You.</p>
<p>I have searched and read dozens of tutorials about how to add thumbnails. I&#8217;m not php geek so most of them made no sense to me. Then I found your tutorial, straight to the point, simply and well explained. Thanks to your tutorial I figured it out and thumbs are now working fine on my blog.</p>
<p>Thanks again, blogthority is bookmarked  I&#8217;ll come back next time I&#8217;m struggling.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

