<?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"
	>
<channel>
	<title>Comments on: WordPress Plugins Updated: Similar Posts, Recent Posts, Random Posts, and Recent Comments</title>
	<atom:link href="http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/feed/" rel="self" type="application/rss+xml" />
	<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/</link>
	<description>Spirituality and Theology</description>
	<pubDate>Fri, 08 Aug 2008 18:33:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Rob</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10303</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Wed, 26 Mar 2008 07:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10303</guid>
		<description>Dan: Can you try re-indexing the posts via the Manage&#124;Similar Posts screen? There seems to be a serious issue here that I'd like to solve.</description>
		<content:encoded><![CDATA[<p>Dan: Can you try re-indexing the posts via the Manage|Similar Posts screen? There seems to be a serious issue here that I&#8217;d like to solve.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan at Necessary Roughness</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10285</link>
		<dc:creator>Dan at Necessary Roughness</dc:creator>
		<pubDate>Wed, 26 Mar 2008 01:30:08 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10285</guid>
		<description>btw...I did deactivate and delete the old plugin first.  Thanks :)</description>
		<content:encoded><![CDATA[<p>btw&#8230;I did deactivate and delete the old plugin first.  Thanks :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan at Necessary Roughness</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10284</link>
		<dc:creator>Dan at Necessary Roughness</dc:creator>
		<pubDate>Wed, 26 Mar 2008 01:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10284</guid>
		<description>Tested Similar Posts 2.5beta9 on my WP 2.3.3, upgrading from previous Similar Posts, and I'm getting nothing but "None Found" for similar posts.  Does the similar posts table need some sort of update?</description>
		<content:encoded><![CDATA[<p>Tested Similar Posts 2.5beta9 on my WP 2.3.3, upgrading from previous Similar Posts, and I&#8217;m getting nothing but &#8220;None Found&#8221; for similar posts.  Does the similar posts table need some sort of update?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barend</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10197</link>
		<dc:creator>Barend</dc:creator>
		<pubDate>Sat, 22 Mar 2008 17:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10197</guid>
		<description>Rob: thank you so much for thinking along. I'm in slightly over my head I'm afraid. I'm guessing i need to place that code into functions.php, and then how exactly do I call that function in the "loop"? If you want to take this off this list you've got my email address I'm sure.</description>
		<content:encoded><![CDATA[<p>Rob: thank you so much for thinking along. I&#8217;m in slightly over my head I&#8217;m afraid. I&#8217;m guessing i need to place that code into functions.php, and then how exactly do I call that function in the &#8220;loop&#8221;? If you want to take this off this list you&#8217;ve got my email address I&#8217;m sure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10196</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 22 Mar 2008 16:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10196</guid>
		<description>Barend: It rather depends on how you are generating the post listing but the following code will get the last comment from a post ID:

&lt;code&gt;
function get_latest_comment($post_id) {
	global $wpdb;
	return $wpdb-&gt;get_var($wpdb-&gt;prepare("SELECT comment_content FROM $wpdb-&gt;comments WHERE comment_post_ID = %d AND comment_approved = '1' ORDER BY comment_date LIMIT 1", $post_id));
}
&lt;/code&gt;
Let me know if this helps.
</description>
		<content:encoded><![CDATA[<p>Barend: It rather depends on how you are generating the post listing but the following code will get the last comment from a post ID:</p>
<p><pre><code>
function get_latest_comment($post_id) {
	global $wpdb;
	return $wpdb-&gt;get_var($wpdb-&gt;prepare("SELECT comment_content FROM $wpdb-&gt;comments WHERE comment_post_ID = %d AND comment_approved = '1' ORDER BY comment_date LIMIT 1", $post_id));
}
</code></pre><br />
Let me know if this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barend</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10194</link>
		<dc:creator>Barend</dc:creator>
		<pubDate>Sat, 22 Mar 2008 15:38:34 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10194</guid>
		<description>Hi Rob, thanks for your reply. Yes it seems like overkill. I thought it would be very straightforward to include the last comment with each post. Your suggestion only puts a link to the comments below the post. What I'd like to achieve is the following:

" Post A" 
latest comment on Post A

"Post B" 
latest comment on Post B

etc.

I hope I'm missing something really obvious here, so any help is appreciated.</description>
		<content:encoded><![CDATA[<p>Hi Rob, thanks for your reply. Yes it seems like overkill. I thought it would be very straightforward to include the last comment with each post. Your suggestion only puts a link to the comments below the post. What I&#8217;d like to achieve is the following:</p>
<p>&#8221; Post A&#8221;<br />
latest comment on Post A</p>
<p>&#8220;Post B&#8221;<br />
latest comment on Post B</p>
<p>etc.</p>
<p>I hope I&#8217;m missing something really obvious here, so any help is appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10193</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 22 Mar 2008 14:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10193</guid>
		<description>Barend: Recent Comments would be overkill for what (I think) you are trying to do. Its intention is do a global listing of comments rather than the comments per post. Maybe the WordPress tag  &lt;a href="http://codex.wordpress.org/Template_Tags/comments_link" rel="nofollow"&gt;comments_link()&lt;/a&gt; would do the job for you?</description>
		<content:encoded><![CDATA[<p>Barend: Recent Comments would be overkill for what (I think) you are trying to do. Its intention is do a global listing of comments rather than the comments per post. Maybe the WordPress tag  <a href="http://codex.wordpress.org/Template_Tags/comments_link" rel="nofollow">comments_link()</a> would do the job for you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barend</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10192</link>
		<dc:creator>Barend</dc:creator>
		<pubDate>Sat, 22 Mar 2008 14:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10192</guid>
		<description>Hi. I'm trying to get the most recent comment for each individual posting, displayed under the corresponding posting in archive view. 

But what I'm getting is the same most recent comment displayed with each posting. 

Is it possible to do what I need with this plugin? It seems so close... Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi. I&#8217;m trying to get the most recent comment for each individual posting, displayed under the corresponding posting in archive view. </p>
<p>But what I&#8217;m getting is the same most recent comment displayed with each posting. </p>
<p>Is it possible to do what I need with this plugin? It seems so close&#8230; Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10148</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Tue, 18 Mar 2008 22:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10148</guid>
		<description>Nick: (sigh of relief!!!)</description>
		<content:encoded><![CDATA[<p>Nick: (sigh of relief!!!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10147</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Tue, 18 Mar 2008 22:40:34 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/2008/03/17/wordpress-post-plugins-25/#comment-10147</guid>
		<description>Thanks, Rob - Random Posts is now working on both servers, and in WordPress 2.3.3 and 2.5 RC1.</description>
		<content:encoded><![CDATA[<p>Thanks, Rob - Random Posts is now working on both servers, and in WordPress 2.3.3 and 2.5 RC1.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
