<?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: Recent Posts</title>
	<atom:link href="http://rmarsh.com/plugins/recent-posts/feed/" rel="self" type="application/rss+xml" />
	<link>http://rmarsh.com</link>
	<description>Spirituality and Theology</description>
	<pubDate>Fri, 08 Aug 2008 18:40:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Rob</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16523</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 07 Aug 2008 10:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16523</guid>
		<description>Alfons: Let me work backwards... I answered above what might be a similar question about using Recent Posts to give a glimpse of older posts. I suggested the following code which you might be able to adapt:
&lt;code&gt;
&lt;?php 
	$ppl_page = $GLOBALS['wp_the_query']-&gt;query_vars['paged'];
	if (!$ppl_page) $ppl_page = 1;
	$ppl_limit = $GLOBALS['wp_the_query']-&gt;query_vars['posts_per_page'];
	$ppl_offset = $ppl_page * $ppl_limit;
	recent_posts("skip=$ppl_offset&#038;limit=$ppl_limit"); 
?&gt;
&lt;/code&gt;

Basically the code works out the range of posts you want to display and passes that information to the plugin as a parameter string.

Now for the {categoryid} issue. It is hard to see why Random Posts and Recent Posts should behave differently since the code to evaluate {categoryid} should be from the same file -- post-plugin-library/output_tags.php. It's possible there is a bug in the common code though.

{categoryid} is an awkward tag! Since categories can be hierarchical and since posts can belong to multiple categories, certain decisions have to be made. I work on the following rules: 1) if multiple categories are assigned to a post the more general ones are knocked out if more specific ones are also assigned; 2) if multiple categories are left choose the first (the numerically smallest).

I'd like to solve the problem you are having. Can you tell me whether your posts fall in more than one category and whether your categories are hierarchical? It would also help if you made two bug reports -- one from the settings screen of each plugin. Thanks.</description>
		<content:encoded><![CDATA[<p>Alfons: Let me work backwards&#8230; I answered above what might be a similar question about using Recent Posts to give a glimpse of older posts. I suggested the following code which you might be able to adapt:<br />
<pre><code>
&lt;?php 
	$ppl_page = $GLOBALS['wp_the_query']-&gt;query_vars['paged'];
	if (!$ppl_page) $ppl_page = 1;
	$ppl_limit = $GLOBALS['wp_the_query']-&gt;query_vars['posts_per_page'];
	$ppl_offset = $ppl_page * $ppl_limit;
	recent_posts("skip=$ppl_offset&amp;limit=$ppl_limit"); 
?&gt;
</code></pre></p>
<p>Basically the code works out the range of posts you want to display and passes that information to the plugin as a parameter string.</p>
<p>Now for the {categoryid} issue. It is hard to see why Random Posts and Recent Posts should behave differently since the code to evaluate {categoryid} should be from the same file &#8212; post-plugin-library/output_tags.php. It&#8217;s possible there is a bug in the common code though.</p>
<p>{categoryid} is an awkward tag! Since categories can be hierarchical and since posts can belong to multiple categories, certain decisions have to be made. I work on the following rules: 1) if multiple categories are assigned to a post the more general ones are knocked out if more specific ones are also assigned; 2) if multiple categories are left choose the first (the numerically smallest).</p>
<p>I&#8217;d like to solve the problem you are having. Can you tell me whether your posts fall in more than one category and whether your categories are hierarchical? It would also help if you made two bug reports &#8212; one from the settings screen of each plugin. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alfons</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16481</link>
		<dc:creator>Alfons</dc:creator>
		<pubDate>Wed, 06 Aug 2008 21:37:12 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16481</guid>
		<description>Hmm...the html code didn't show up....I'll try it again:

div id="postHeader{categoryid}"
div class="post{categoryid}"</description>
		<content:encoded><![CDATA[<p>Hmm&#8230;the html code didn&#8217;t show up&#8230;.I&#8217;ll try it again:</p>
<p>div id=&#8221;postHeader{categoryid}&#8221;<br />
div class=&#8221;post{categoryid}&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alfons</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16480</link>
		<dc:creator>Alfons</dc:creator>
		<pubDate>Wed, 06 Aug 2008 21:30:08 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16480</guid>
		<description>Hi Rob,

I use your "Random Post" and the "Recent Post" plugin. Both working fine, but I have a output problem with "Recent Posts". To display different graphics for each category I use a similar code like that:



It works fine for the Random Post plugin with 6 categories but if I use {categoryid} with the Recent Post plugin it just return two different category numbers.

Also is it possible to have a kind of navigation for the Recent Post plugin. I want to show 5 recent posts per page but with the possibility to go further back in the archive. So basically the functionality what you can get with the index.php

Thanks for your help
Alfons</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>I use your &#8220;Random Post&#8221; and the &#8220;Recent Post&#8221; plugin. Both working fine, but I have a output problem with &#8220;Recent Posts&#8221;. To display different graphics for each category I use a similar code like that:</p>
<p>It works fine for the Random Post plugin with 6 categories but if I use {categoryid} with the Recent Post plugin it just return two different category numbers.</p>
<p>Also is it possible to have a kind of navigation for the Recent Post plugin. I want to show 5 recent posts per page but with the possibility to go further back in the archive. So basically the functionality what you can get with the index.php</p>
<p>Thanks for your help<br />
Alfons</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Solved: WP Recent Posts: &#8220;Post-Plugin Library missing&#8221; @ nerd.</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16434</link>
		<dc:creator>&#187; Solved: WP Recent Posts: &#8220;Post-Plugin Library missing&#8221; @ nerd.</dc:creator>
		<pubDate>Tue, 05 Aug 2008 09:23:21 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16434</guid>
		<description>[...] can&#8217;t remember if I upgraded Wordpress or the Recent Posts plugin or both, but I&#8217;m guessing it was an upgrade to the Recent Post plugin that caused the [...]</description>
		<content:encoded><![CDATA[<p>[...] can&#8217;t remember if I upgraded Wordpress or the Recent Posts plugin or both, but I&#8217;m guessing it was an upgrade to the Recent Post plugin that caused the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16430</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Tue, 05 Aug 2008 07:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16430</guid>
		<description>Markus: Good to hear.</description>
		<content:encoded><![CDATA[<p>Markus: Good to hear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Markus</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16420</link>
		<dc:creator>Markus</dc:creator>
		<pubDate>Mon, 04 Aug 2008 20:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16420</guid>
		<description>just what I was looking for! thanks a lot!</description>
		<content:encoded><![CDATA[<p>just what I was looking for! thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16386</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sun, 03 Aug 2008 10:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16386</guid>
		<description>Rool: The output from Recent Posts doesn't really have a width as such -- it just emits what you tell it to  in the output template. How that displays is all up to your CSS.

For the grouped output make some entries on output settings screen: sort by {date:Y-m-d} descending and use {date} as the group output template. You can use whatever you like as the output template for the article items, e.g., &lt;code&gt;&lt;li&gt;{link}&lt;/li&gt;&lt;/code&gt;

Good luck!</description>
		<content:encoded><![CDATA[<p>Rool: The output from Recent Posts doesn&#8217;t really have a width as such &#8212; it just emits what you tell it to  in the output template. How that displays is all up to your CSS.</p>
<p>For the grouped output make some entries on output settings screen: sort by {date:Y-m-d} descending and use {date} as the group output template. You can use whatever you like as the output template for the article items, e.g., <code>&lt;li&gt;{link}&lt;/li&gt;</code></p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rool</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16374</link>
		<dc:creator>Rool</dc:creator>
		<pubDate>Sun, 03 Aug 2008 00:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16374</guid>
		<description>Is it also possible to add for every new day 1 time above the recent post wich day the articles are posted? 

so that you get this:

Date (today)
article 1
article 2
article 3
article 4

Date (yesterday)
article 1
article 2
article 3

Date (day before yesterday)
article 1
article 2
etc 
etc</description>
		<content:encoded><![CDATA[<p>Is it also possible to add for every new day 1 time above the recent post wich day the articles are posted? </p>
<p>so that you get this:</p>
<p>Date (today)<br />
article 1<br />
article 2<br />
article 3<br />
article 4</p>
<p>Date (yesterday)<br />
article 1<br />
article 2<br />
article 3</p>
<p>Date (day before yesterday)<br />
article 1<br />
article 2<br />
etc<br />
etc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rool</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16372</link>
		<dc:creator>Rool</dc:creator>
		<pubDate>Sat, 02 Aug 2008 23:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16372</guid>
		<description>Hi Rob,

I just installed the plugin and add it to my code with this line:





but now my layout is a bit messed up. I think the width of the plugin isn't right. Can you see what i'm doing wrong. My site http://wielerprimeur.nl</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>I just installed the plugin and add it to my code with this line:</p>
<p>but now my layout is a bit messed up. I think the width of the plugin isn&#8217;t right. Can you see what i&#8217;m doing wrong. My site <a href="http://wielerprimeur.nl" rel="nofollow">http://wielerprimeur.nl</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bukunya warix &#187; Mengenal Themes, Plugins, Widgets dan Code di Wordpress</title>
		<link>http://rmarsh.com/plugins/recent-posts/#comment-16330</link>
		<dc:creator>Bukunya warix &#187; Mengenal Themes, Plugins, Widgets dan Code di Wordpress</dc:creator>
		<pubDate>Thu, 31 Jul 2008 17:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://rmarsh.com/plugins/recent-posts/#comment-16330</guid>
		<description>[...] Recent Posts » postingan terakhir [...]</description>
		<content:encoded><![CDATA[<p>[...] Recent Posts » postingan terakhir [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
