<?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 List most recent comments and recent post on your wordpress themes</title>
	<atom:link href="http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes</link>
	<description>Narga - Ideas and inspiration in my opinion!</description>
	<lastBuildDate>Sun, 22 Jan 2012 00:58:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Matt Huston</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-285</link>
		<dc:creator>Matt Huston</dc:creator>
		<pubDate>Sun, 07 Aug 2011 15:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-285</guid>
		<description>I think my biggest problem is too many plugins going at once.
I will be tying the code out soon.</description>
		<content:encoded><![CDATA[<p>I think my biggest problem is too many plugins going at once.<br />
I will be tying the code out soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Get Him Back Forever</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-284</link>
		<dc:creator>Get Him Back Forever</dc:creator>
		<pubDate>Sun, 07 Aug 2011 15:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-284</guid>
		<description>it&#039;s a helpful info for blogger like me...
thank you for your info :)</description>
		<content:encoded><![CDATA[<p>it&#8217;s a helpful info for blogger like me&#8230;<br />
thank you for your info <img src='http://www.narga.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: koh hong wan</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-283</link>
		<dc:creator>koh hong wan</dc:creator>
		<pubDate>Fri, 17 Jun 2011 19:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-283</guid>
		<description>for the recent comment, anyway to tweak it to show only latest comment for a specific post?</description>
		<content:encoded><![CDATA[<p>for the recent comment, anyway to tweak it to show only latest comment for a specific post?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sami</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-282</link>
		<dc:creator>sami</dc:creator>
		<pubDate>Sun, 15 May 2011 02:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-282</guid>
		<description>I like the theme, thanks very much</description>
		<content:encoded><![CDATA[<p>I like the theme, thanks very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-281</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Mon, 25 Apr 2011 05:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-281</guid>
		<description>How could I modify this to call a specific post and show the comments from that post only?</description>
		<content:encoded><![CDATA[<p>How could I modify this to call a specific post and show the comments from that post only?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Esmaeil</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-280</link>
		<dc:creator>Esmaeil</dc:creator>
		<pubDate>Sat, 05 Mar 2011 08:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-280</guid>
		<description>Hi. I wanted to add Avatar recognition to this recent comments code:
[php]
comments LEFT OUTER JOIN $wpdb-&amp;gt;posts ON ($wpdb-&amp;gt;comments.comment_post_ID = $wpdb-&amp;gt;posts.ID) WHERE comment_approved = &#039;1&#039; AND comment_type = &#039;&#039; AND post_password = &#039;&#039; ORDER BY comment_date_gmt DESC LIMIT 10&quot;;
$comments = $wpdb-&amp;gt;get_results($sql);
$output = $pre_HTML;
$output .= &quot;n&quot;;
foreach ($comments as $comment) {
$output .= &quot;n&quot;.strip_tags($comment-&amp;gt;comment_author) .&quot; on &lt;a href=&quot;&quot; rel=&quot;nofollow&quot;&gt;ID).&quot;#comment-&quot; . $comment-&amp;gt;comment_ID . &quot;&quot; rel=&quot;nofollow&quot; title=&quot;on &quot;.$comment-&amp;gt;post_title . &quot;&quot;&amp;gt;&quot;.$comment-&amp;gt;post_title .&quot;&lt;/a&gt; : &quot; . strip_tags($comment-&amp;gt;com_excerpt).&quot;...&quot;;}
$output .= &quot;n&quot;;
$output .= $post_HTML;
echo $output; ?&amp;gt;
[/php]
but no matter where I put the code:
[php]comment_author_email, &#039;55&#039; ); ?&amp;gt;[/php]

It always doesn&#039;t work. How can I fix the problem?
Thank you so much.</description>
		<content:encoded><![CDATA[<p>Hi. I wanted to add Avatar recognition to this recent comments code:</p>
<pre class="brush: php; title: ; notranslate">
comments LEFT OUTER JOIN $wpdb-&amp;amp;gt;posts ON ($wpdb-&amp;amp;gt;comments.comment_post_ID = $wpdb-&amp;amp;gt;posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10&amp;quot;;
$comments = $wpdb-&amp;amp;gt;get_results($sql);
$output = $pre_HTML;
$output .= &amp;quot;n&amp;quot;;
foreach ($comments as $comment) {
$output .= &amp;quot;n&amp;quot;.strip_tags($comment-&amp;amp;gt;comment_author) .&amp;quot; on &amp;lt;a href=&amp;quot;&amp;quot; rel=&amp;quot;nofollow&amp;quot;&amp;gt;ID).&amp;quot;#comment-&amp;quot; . $comment-&amp;amp;gt;comment_ID . &amp;quot;&amp;quot; rel=&amp;quot;nofollow&amp;quot; title=&amp;quot;on &amp;quot;.$comment-&amp;amp;gt;post_title . &amp;quot;&amp;quot;&amp;amp;gt;&amp;quot;.$comment-&amp;amp;gt;post_title .&amp;quot;&amp;lt;/a&amp;gt; : &amp;quot; . strip_tags($comment-&amp;amp;gt;com_excerpt).&amp;quot;...&amp;quot;;}
$output .= &amp;quot;n&amp;quot;;
$output .= $post_HTML;
echo $output; ?&amp;amp;gt;
</pre>
<p>but no matter where I put the code:</p>
<pre class="brush: php; title: ; notranslate">comment_author_email, '55' ); ?&amp;amp;gt;</pre>
<p>It always doesn&#8217;t work. How can I fix the problem?<br />
Thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-279</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 10 Feb 2011 22:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-279</guid>
		<description>This blog appears to recieve a great deal of visitors. How do you promote it? It offers a nice unique twist on things. I guess having something authentic or substantial to talk about is the most important factor.</description>
		<content:encoded><![CDATA[<p>This blog appears to recieve a great deal of visitors. How do you promote it? It offers a nice unique twist on things. I guess having something authentic or substantial to talk about is the most important factor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Derll</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-278</link>
		<dc:creator>Jason Derll</dc:creator>
		<pubDate>Tue, 01 Feb 2011 05:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-278</guid>
		<description>I think my biggest problem is too many plugins going at once.
I will be tying the code out soon.</description>
		<content:encoded><![CDATA[<p>I think my biggest problem is too many plugins going at once.<br />
I will be tying the code out soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eksper</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-277</link>
		<dc:creator>eksper</dc:creator>
		<pubDate>Mon, 24 Jan 2011 21:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-277</guid>
		<description>A beautiful and high quality information. this paper is accurate to be useful. Thanks to the author.</description>
		<content:encoded><![CDATA[<p>A beautiful and high quality information. this paper is accurate to be useful. Thanks to the author.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ankara nakliyat</title>
		<link>http://www.narga.net/how-to-list-most-recent-comments-and-recent-post-on-your-wordpress-themes/#comment-276</link>
		<dc:creator>ankara nakliyat</dc:creator>
		<pubDate>Mon, 24 Jan 2011 21:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.narga.net/?p=1319#comment-276</guid>
		<description>A beautiful and high quality information. this paper is accurate to be useful. Thanks to the author.</description>
		<content:encoded><![CDATA[<p>A beautiful and high quality information. this paper is accurate to be useful. Thanks to the author.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

