<?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 for cssigniter.com</title>
	<atom:link href="http://www.cssigniter.com/ignite/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cssigniter.com/ignite</link>
	<description>Premium WordPress themes</description>
	<lastBuildDate>Wed, 22 Feb 2012 05:22:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Theme preview: Informati by WordPressUser</title>
		<link>http://www.cssigniter.com/ignite/theme-preview-informati/#comment-333</link>
		<dc:creator>WordPressUser</dc:creator>
		<pubDate>Wed, 22 Feb 2012 05:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=950#comment-333</guid>
		<description>Fabulous magazine style theme.....

looks pretty good...</description>
		<content:encoded><![CDATA[<p>Fabulous magazine style theme&#8230;..</p>
<p>looks pretty good&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types Relationships by JHouse</title>
		<link>http://www.cssigniter.com/ignite/custom-post-types-relationships/#comment-330</link>
		<dc:creator>JHouse</dc:creator>
		<pubDate>Thu, 16 Feb 2012 07:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=186#comment-330</guid>
		<description>Wow, I appreciate the responsive and extensive reply. Much appreciated.

So, the second tip worked out quickly. Thank you. In regards to the first issue, yes, we can probably just filter the photo. Makes sense. Good idea, thanks.

I seriously appreciate this plugin and tutorial. Have a good one.</description>
		<content:encoded><![CDATA[<p>Wow, I appreciate the responsive and extensive reply. Much appreciated.</p>
<p>So, the second tip worked out quickly. Thank you. In regards to the first issue, yes, we can probably just filter the photo. Makes sense. Good idea, thanks.</p>
<p>I seriously appreciate this plugin and tutorial. Have a good one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on We have a lift-off by Gerasimos Tsiamalos</title>
		<link>http://www.cssigniter.com/ignite/we-have-a-lift-off/#comment-323</link>
		<dc:creator>Gerasimos Tsiamalos</dc:creator>
		<pubDate>Thu, 16 Feb 2012 06:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=742#comment-323</guid>
		<description>Oh yeah we do have plans for stuff like this. Just keep an eye around here :)</description>
		<content:encoded><![CDATA[<p>Oh yeah we do have plans for stuff like this. Just keep an eye around here <img src='http://www.cssigniter.com/ignite/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types Relationships by Anastis Sourgoutsidis</title>
		<link>http://www.cssigniter.com/ignite/custom-post-types-relationships/#comment-322</link>
		<dc:creator>Anastis Sourgoutsidis</dc:creator>
		<pubDate>Thu, 16 Feb 2012 04:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=186#comment-322</guid>
		<description>Hi, and thanks for your kind words.

Unfortunately, there is currently no way you can grab any other image than the post&#039;s thumbnail. Using the plugin that is. 
If you examine the function get_the_post_thumbnail() in the file wp-includes/post-thumbnail-template.php you will see there is a filter executing when returning the html of the image. You can hook a function on that &#039;post_thumbnail_html&#039; filter, and have it return the html of your custom field images (the html string will be empty in your case anyway, since you don&#039;t use featured images). In that hooked function, you could also use something like &lt;a href=&quot;http://www.wprecipes.com/how-to-get-the-first-image-from-the-post-and-display-it&quot; rel=&quot;nofollow&quot;&gt;this function&lt;/a&gt; to get your first image. I&#039;m not sure it will work though, as it will depend on when and how the things are run, i.e. your custom fields may be included in your content later than the hook, or not included in the content at all).

For your second question, the editor may have stripped whatever you wrote in the &lt;code&gt; block, so I don&#039;t know to what exactly you are referring to. I&#039;ll assume you use the function call of the plugin though, and not the shortcode.
You can have the function return the related articles instead of echoing them, (see first parameter of cptr() in the documentation) into a variable, and test if empty. The function returns an unordered list of posts only if one or more are related. Otherwise it returns an empty string.
So you could do something like:
&lt;code&gt;
$related = cptr(false);
if( !empty( $related ) )
{
  echo &quot;&lt;h2&gt;Similar&lt;/h2&gt;&quot;;
  echo $related;
}
&lt;/code&gt;

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi, and thanks for your kind words.</p>
<p>Unfortunately, there is currently no way you can grab any other image than the post&#8217;s thumbnail. Using the plugin that is.<br />
If you examine the function get_the_post_thumbnail() in the file wp-includes/post-thumbnail-template.php you will see there is a filter executing when returning the html of the image. You can hook a function on that &#8216;post_thumbnail_html&#8217; filter, and have it return the html of your custom field images (the html string will be empty in your case anyway, since you don&#8217;t use featured images). In that hooked function, you could also use something like <a href="http://www.wprecipes.com/how-to-get-the-first-image-from-the-post-and-display-it" rel="nofollow">this function</a> to get your first image. I&#8217;m not sure it will work though, as it will depend on when and how the things are run, i.e. your custom fields may be included in your content later than the hook, or not included in the content at all).</p>
<p>For your second question, the editor may have stripped whatever you wrote in the &lt;code> block, so I don&#8217;t know to what exactly you are referring to. I&#8217;ll assume you use the function call of the plugin though, and not the shortcode.<br />
You can have the function return the related articles instead of echoing them, (see first parameter of cptr() in the documentation) into a variable, and test if empty. The function returns an unordered list of posts only if one or more are related. Otherwise it returns an empty string.<br />
So you could do something like:<br />
<code><br />
$related = cptr(false);<br />
if( !empty( $related ) )<br />
{<br />
  echo "&lt;h2>Similar&lt;/h2>";<br />
  echo $related;<br />
}<br />
</code></p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on We have a lift-off by Tutspress</title>
		<link>http://www.cssigniter.com/ignite/we-have-a-lift-off/#comment-320</link>
		<dc:creator>Tutspress</dc:creator>
		<pubDate>Thu, 16 Feb 2012 03:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=742#comment-320</guid>
		<description>Cssigniter have a plan any discount or special promotions?</description>
		<content:encoded><![CDATA[<p>Cssigniter have a plan any discount or special promotions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types Relationships by JHouse</title>
		<link>http://www.cssigniter.com/ignite/custom-post-types-relationships/#comment-314</link>
		<dc:creator>JHouse</dc:creator>
		<pubDate>Wed, 15 Feb 2012 22:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=186#comment-314</guid>
		<description>Hi Anastis,

This plugin works great. It&#039;s very easy to associate custom post types with others cpt&#039;s; it&#039;s pretty much self-explanatory. It&#039;s great when plugins are simple and work as they should. Thank you.

Question: I&#039;m not using Featured Images, but instead meta boxes to upload images, and consequently, haven&#039;t been able to show the thumbnails per related post. Is there a way to display the first photo of a cpt instead of the featured photo?

Also, is it possible to display the word &quot;Similar&quot; before the list of related posts/cpt&#039;s? I know I can add it before the &lt;code&gt;&lt;/code&gt;, but I don&#039;t want it to appear when there aren&#039;t related posts. So, I want it to be included in the php. Could you please provide a tip on how to achieve this?

Thanks again for your plugin and tips. I&#039;ve been wanting something like this for a long time.</description>
		<content:encoded><![CDATA[<p>Hi Anastis,</p>
<p>This plugin works great. It&#8217;s very easy to associate custom post types with others cpt&#8217;s; it&#8217;s pretty much self-explanatory. It&#8217;s great when plugins are simple and work as they should. Thank you.</p>
<p>Question: I&#8217;m not using Featured Images, but instead meta boxes to upload images, and consequently, haven&#8217;t been able to show the thumbnails per related post. Is there a way to display the first photo of a cpt instead of the featured photo?</p>
<p>Also, is it possible to display the word &#8220;Similar&#8221; before the list of related posts/cpt&#8217;s? I know I can add it before the <code></code>, but I don&#8217;t want it to appear when there aren&#8217;t related posts. So, I want it to be included in the php. Could you please provide a tip on how to achieve this?</p>
<p>Thanks again for your plugin and tips. I&#8217;ve been wanting something like this for a long time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Theme preview: Dionysus by Theme updates &#8211; Custom options panel - cssigniter.com</title>
		<link>http://www.cssigniter.com/ignite/theme-preview-dionysus/#comment-305</link>
		<dc:creator>Theme updates &#8211; Custom options panel - cssigniter.com</dc:creator>
		<pubDate>Wed, 15 Feb 2012 13:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=828#comment-305</guid>
		<description>[...] just a reminder that Dionysus, our WordPress theme for music artists is coming out today so keep an eye on Twitter or subscribe to our blog feed and be the first to [...]</description>
		<content:encoded><![CDATA[<p>[...] just a reminder that Dionysus, our WordPress theme for music artists is coming out today so keep an eye on Twitter or subscribe to our blog feed and be the first to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by We have a lift-off - cssigniter.com</title>
		<link>http://www.cssigniter.com/ignite/about/#comment-118</link>
		<dc:creator>We have a lift-off - cssigniter.com</dc:creator>
		<pubDate>Fri, 03 Feb 2012 22:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://tsiger.local/ci_new/?page_id=24#comment-118</guid>
		<description>[...] About [...]</description>
		<content:encoded><![CDATA[<p>[...] About [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types Relationships by Anastis</title>
		<link>http://www.cssigniter.com/ignite/custom-post-types-relationships/#comment-99</link>
		<dc:creator>Anastis</dc:creator>
		<pubDate>Fri, 13 Jan 2012 17:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=186#comment-99</guid>
		<description>It&#039;s on my to-do list quite some time now :)</description>
		<content:encoded><![CDATA[<p>It&#8217;s on my to-do list quite some time now <img src='http://www.cssigniter.com/ignite/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types Relationships by Anastis</title>
		<link>http://www.cssigniter.com/ignite/custom-post-types-relationships/#comment-98</link>
		<dc:creator>Anastis</dc:creator>
		<pubDate>Fri, 13 Jan 2012 17:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.cssigniter.com/ignite/?p=186#comment-98</guid>
		<description>Hi Jeff,
yes, the plugin is currently operating in a very specific manner. Searching only searches titles, because that&#039;s all you can see. If it looked on tags and main text, it would be impossible for you to tell what exactly matched.

Setting the default order is a good idea, and I&#039;ll try to implement it in the next version. You&#039;ll be able to change it from within the settings page.

Now, about the 500 posts limit you are mentioning, there isn&#039;t such a thing. The limits that are implemented are 10, 50, 100 and &quot;All&quot;. Make sure you have updated to the latest version.</description>
		<content:encoded><![CDATA[<p>Hi Jeff,<br />
yes, the plugin is currently operating in a very specific manner. Searching only searches titles, because that&#8217;s all you can see. If it looked on tags and main text, it would be impossible for you to tell what exactly matched.</p>
<p>Setting the default order is a good idea, and I&#8217;ll try to implement it in the next version. You&#8217;ll be able to change it from within the settings page.</p>
<p>Now, about the 500 posts limit you are mentioning, there isn&#8217;t such a thing. The limits that are implemented are 10, 50, 100 and &#8220;All&#8221;. Make sure you have updated to the latest version.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 1/8 queries in 0.004 seconds using disk: basic
Object Caching 393/401 objects using disk: basic

Served from: www.cssigniter.com @ 2012-02-22 18:00:02 -->
