<?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: Free WordPress Script for Custom Post Images</title>
	<atom:link href="http://www.pixellica.com/web/free-wordpress-script-for-custom-post-images/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images</link>
	<description>Inspiration &#38; instruction for art and design</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:30:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: wisah</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-232</link>
		<dc:creator>wisah</dc:creator>
		<pubDate>Thu, 16 Jun 2011 22:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-232</guid>
		<description>&lt;a href=&#039;#comment-164&#039; rel=&quot;nofollow&quot;&gt;@Craig Dennis&lt;/a&gt; - Hi, can you share your getImage function with post thumbnails which were introduced in WordPress 2.9 with
the_thumbnail();&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;232&#039;,&#039;wisah&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p><a href='#comment-164' rel="nofollow">@Craig Dennis</a> &#8211; Hi, can you share your getImage function with post thumbnails which were introduced in WordPress 2.9 with<br />
the_thumbnail();
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('232','wisah'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
	<item>
		<title>By: wisah</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-231</link>
		<dc:creator>wisah</dc:creator>
		<pubDate>Thu, 16 Jun 2011 21:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-231</guid>
		<description>Hi, great script ! but i&#039;m strugling to make it work. It find the default image only but not the_post_thumbnail one !!

any help ?&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;231&#039;,&#039;wisah&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Hi, great script ! but i&#8217;m strugling to make it work. It find the default image only but not the_post_thumbnail one !!</p>
<p>any help ?
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('231','wisah'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress, TimThumb &#38; jQuery: Image Hover Effect &#124; Blog &#124; Craig Dennis</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-167</link>
		<dc:creator>Wordpress, TimThumb &#38; jQuery: Image Hover Effect &#124; Blog &#124; Craig Dennis</dc:creator>
		<pubDate>Wed, 14 Jul 2010 21:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-167</guid>
		<description>[...] Get the Image script (includes a TimThumb.php in a package file) [...]&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;167&#039;,&#039;Wordpress, TimThumb &amp; jQuery: Image Hover Effect &#124; Blog &#124; Craig Dennis&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>[...] Get the Image script (includes a TimThumb.php in a package file) [...]
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('167','Wordpress, TimThumb &amp;amp; jQuery: Image Hover Effect | Blog | Craig Dennis'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Dennis</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-164</link>
		<dc:creator>Craig Dennis</dc:creator>
		<pubDate>Sun, 04 Apr 2010 17:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-164</guid>
		<description>Having a little trouble parsing the html in your comments. Please delete as appropriate.

Hi, great script. I was trying to do something like this and spent a few hours getting something to work but your solution is much more refined.

A few things I have learnt while doing this though which might be helpful.

1) Convention dictates x axis first then y -- so I swapped the $w and $h around in the function call. Made more sense.

2) The string it outputs is not actually valid html. By that I mean that it does not pass the W3C validation test -- to resolve this (through much trial and error on my own script) you must change the &amp; in the output to 
&lt;code&gt;&amp;&lt;/code&gt;

So it would read 

&lt;code&gt;img src=\&quot;&quot;.get_bloginfo(&#039;template_url&#039;).&quot;/scripts/timthumb.php?src=$echoIMG&amp;h=$h&amp;w=$w&amp;zc=1&amp;$filter\&quot; alt=\&quot;\&quot; width=\&quot;$w\&quot; height=\&quot;$h\&quot;&lt;/code&gt;

You also have to do this on the $filter (which I missed and wondered why it wasn&#039;t working)

3) I&#039;m working at the moment on trying to get it to look for dedicated post thumbnails which were introduced in Wordpress 2.9 with
&lt;code&gt;the_thumbnail();&lt;/code&gt;
so that it looks for that first, then for the rest. I am cannibalising the get_image plugin to do so.

Anyway, hope this helps someone. Great script and thanks :D&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;164&#039;,&#039;Craig Dennis&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Having a little trouble parsing the html in your comments. Please delete as appropriate.</p>
<p>Hi, great script. I was trying to do something like this and spent a few hours getting something to work but your solution is much more refined.</p>
<p>A few things I have learnt while doing this though which might be helpful.</p>
<p>1) Convention dictates x axis first then y &#8212; so I swapped the $w and $h around in the function call. Made more sense.</p>
<p>2) The string it outputs is not actually valid html. By that I mean that it does not pass the W3C validation test &#8212; to resolve this (through much trial and error on my own script) you must change the &amp; in the output to<br />
<code>&amp;</code></p>
<p>So it would read </p>
<p><code>img src=\"".get_bloginfo('template_url')."/scripts/timthumb.php?src=$echoIMG&amp;h=$h&amp;w=$w&amp;zc=1&amp;$filter\" alt=\"\" width=\"$w\" height=\"$h\"</code></p>
<p>You also have to do this on the $filter (which I missed and wondered why it wasn&#8217;t working)</p>
<p>3) I&#8217;m working at the moment on trying to get it to look for dedicated post thumbnails which were introduced in WordPress 2.9 with<br />
<code>the_thumbnail();</code><br />
so that it looks for that first, then for the rest. I am cannibalising the get_image plugin to do so.</p>
<p>Anyway, hope this helps someone. Great script and thanks :D
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('164','Craig Dennis'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Dennis</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-162</link>
		<dc:creator>Craig Dennis</dc:creator>
		<pubDate>Sun, 04 Apr 2010 17:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-162</guid>
		<description>Hi, great script. I was trying to do something like this and spent a few hours getting something to work but your solution is much more refined.

A few things I have learnt while doing this though which might be helpful.

1) Convention dictates x axis first then y -- so I swapped the $w and $h around in the function call. Made more sense.

2) The string it outputs is not actually valid html. By that I mean that it does not pass the W3C validation test -- to resolve this (through much trial and error on my own script) you must change the &amp; in the output to &lt;code&amp;&lt;/code&gt;. So it would read 

&lt;code&gt;return &quot;&quot;;&lt;/code&gt;

You also have to do this on the $filter (which I missed and wondered why it wasn&#039;t working)

3) I&#039;m working at the moment on trying to get it to look for dedicated post thumbnails which were introduced in Wordpress 2.9 with &lt;code&gt;&lt;/code&gt; so that it looks for those first so it can apply any filters to it, then for the rest. I am cannibalising the get_image plugin to do so.

Anyway, hope this helps someone. Great script and thanks :D&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;162&#039;,&#039;Craig Dennis&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Hi, great script. I was trying to do something like this and spent a few hours getting something to work but your solution is much more refined.</p>
<p>A few things I have learnt while doing this though which might be helpful.</p>
<p>1) Convention dictates x axis first then y &#8212; so I swapped the $w and $h around in the function call. Made more sense.</p>
<p>2) The string it outputs is not actually valid html. By that I mean that it does not pass the W3C validation test &#8212; to resolve this (through much trial and error on my own script) you must change the &amp; in the output to &lt;code&amp;. So it would read </p>
<p><code>return "";</code></p>
<p>You also have to do this on the $filter (which I missed and wondered why it wasn't working)</p>
<p>3) I'm working at the moment on trying to get it to look for dedicated post thumbnails which were introduced in WordPress 2.9 with <code></code> so that it looks for those first so it can apply any filters to it, then for the rest. I am cannibalising the get_image plugin to do so.</p>
<p>Anyway, hope this helps someone. Great script and thanks :D
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('162','Craig Dennis'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-102</link>
		<dc:creator>Derek</dc:creator>
		<pubDate>Sat, 31 Oct 2009 15:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-102</guid>
		<description>I don&#039;t have it as a Plugin yet, sorry. Plugins are quite a bit more in-depth to produce, and I&#039;m not that fluent w WordPress yet.&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;102&#039;,&#039;Derek&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>I don&#8217;t have it as a Plugin yet, sorry. Plugins are quite a bit more in-depth to produce, and I&#8217;m not that fluent w WordPress yet.
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('102','Derek'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
	<item>
		<title>By: ben white</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-99</link>
		<dc:creator>ben white</dc:creator>
		<pubDate>Fri, 30 Oct 2009 20:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-99</guid>
		<description>Do you have it available as a plugin? I&#039;m not that good at editing the theme files directly.

Thanks&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;99&#039;,&#039;ben white&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Do you have it available as a plugin? I&#8217;m not that good at editing the theme files directly.</p>
<p>Thanks
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('99','ben white'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Free WordPress Script for Custom Post Images &#124; ShareFavorite</title>
		<link>http://www.pixellica.com/wordpress-2/free-wordpress-script-for-custom-post-images/comment-page-1#comment-98</link>
		<dc:creator>Free WordPress Script for Custom Post Images &#124; ShareFavorite</dc:creator>
		<pubDate>Fri, 30 Oct 2009 18:24:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixellica.com/?p=837#comment-98</guid>
		<description>[...] more from the original source: Free WordPress Script for Custom Post Images       Related [...]&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;98&#039;,&#039;Free WordPress Script for Custom Post Images &#124; ShareFavorite&#039;); return false;&quot;&gt;Reply&lt;/a&gt; &lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>[...] more from the original source: Free WordPress Script for Custom Post Images       Related [...]
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('98','Free WordPress Script for Custom Post Images | ShareFavorite'); return false;">Reply</a> </div>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.pixellica.com @ 2012-02-05 02:34:12 -->
