<?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: Recent Posts with Excerpts</title>
	<atom:link href="http://sillybean.net/code/wordpress/recent-posts-with-excerpts/feed/" rel="self" type="application/rss+xml" />
	<link>http://sillybean.net</link>
	<description>reading, writing, web design, and the intersections thereof</description>
	<lastBuildDate>Wed, 10 Mar 2010 18:24:56 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ryan</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-19400</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 09 Mar 2010 06:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-19400</guid>
		<description>I apologize profusely for mispelling your name and getting it totally wrong in the comment above :)</description>
		<content:encoded><![CDATA[<p>I apologize profusely for mispelling your name and getting it totally wrong in the comment above :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-19399</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 09 Mar 2010 06:55:51 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-19399</guid>
		<description>Hey Stephan,

Thanks for the excellent plugin. While validating the HTML on my site, I noticed that the plug-in was giving rise to two valdiating issues. I managed to correct them but I thought that you might like to know so you could possibly correct this in the next version of the plugin. 

The first issue relates to the incorrect closing of some tags outside the IF statement checking if &quot;more_text&quot; is empty. The original code is:

if (!empty($instance[&#039;more_text&#039;])) { ?&gt;&lt;p class=&quot;alignright&quot;&gt;&lt;small&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php echo $instance[&#039;more_text&#039;]; } ?&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;

I replaced it with the following code:

if (!empty($instance[&#039;more_text&#039;])) { ?&gt;&lt;p class=&quot;alignright&quot;&gt;&lt;small&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php echo $instance[&#039;more_text&#039;];  ?&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt; &lt;?php } ?&gt; 

Also, you have forgotten to close the  tag at the end of the post loop for the widget. I rectified this by closing the tag right before the endwhile statement:

} ?&gt;
&lt;/li&gt; &lt;?php
endwhile;

I hope this helps. It doesn&#039;t actually break the plugin, but it might bring up some quirks on older browsers. Thanks for the plugin!

Cheers</description>
		<content:encoded><![CDATA[<p>Hey Stephan,</p>
<p>Thanks for the excellent plugin. While validating the <span class="caps">HTML </span>on my site, I noticed that the plug-in was giving rise to two valdiating issues. I managed to correct them but I thought that you might like to know so you could possibly correct this in the next version of the plugin. </p>
<p>The first issue relates to the incorrect closing of some tags outside the IF statement checking if &#8220;more_text&#8221; is empty. The original code is:</p>
<p>if (!empty($instance['more_text'])) { ?&gt;&lt;p class=&#34;alignright&#34;&gt;&lt;small&gt;&lt;a href=&#34;&lt;?php the_permalink(); ?&gt;&#34;&gt;&lt;?php echo $instance['more_text']; } ?&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;</p>
<p>I replaced it with the following code:</p>
<p>if (!empty($instance['more_text'])) { ?&gt;&lt;p class=&#34;alignright&#34;&gt;&lt;small&gt;&lt;a href=&#34;&lt;?php the_permalink(); ?&gt;&#34;&gt;&lt;?php echo $instance['more_text'];  ?&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt; &lt;?php } ?&gt; </p>
<p>Also, you have forgotten to close the  tag at the end of the post loop for the widget. I rectified this by closing the tag right before the endwhile statement:</p>
<p>} ?&gt;<br />
&lt;/li&gt; &lt;?php<br />
endwhile;</p>
<p>I hope this helps. It doesn&#8217;t actually break the plugin, but it might bring up some quirks on older browsers. Thanks for the plugin!</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alessandro</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-18776</link>
		<dc:creator>Alessandro</dc:creator>
		<pubDate>Sat, 20 Feb 2010 00:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-18776</guid>
		<description>On the question Posted by Matthew on September 14th, 2009 at 1:59 pm:
I wrote a workaround to insert a link to the category within the title of the widget, awaiting a new version of the widget

I wrote it in a few minutes then I recommend making a backup of the page before editing.

FIRST STEP
Search text:
echo $before_widget;

and just below write:
if ($instance [&#039;cat&#039;]&gt; 0)
    $category_link .= get_category_link ($instance [&#039;cat&#039;]);
else $category_link = get_permalink (get_option (&#039;home&#039;));

SECOND STEP:
Search text
else $link = get_permalink (get_option (&#039;home&#039;));

and replace it with
else $link =&#039;&#039;.category_link;</description>
		<content:encoded><![CDATA[<p>On the question Posted by Matthew on September 14th, 2009 at 1:59 pm:<br />
I wrote a workaround to insert a link to the category within the title of the widget, awaiting a new version of the widget</p>
<p>I wrote it in a few minutes then I recommend making a backup of the page before editing.</p>
<p><span class="caps">FIRST STEP</span><br />
Search text:<br />
echo $before_widget;</p>
<p>and just below write:<br />
if ($instance ['cat']&gt; 0)<br />
    $category_link .= get_category_link ($instance ['cat']);<br />
else $category_link = get_permalink (get_option (&#8216;home&#8217;));</p>
<p><span class="caps">SECOND STEP</span>:<br />
Search text<br />
else $link = get_permalink (get_option (&#8216;home&#8217;));</p>
<p>and replace it with<br />
else $link =&#8221;.category_link;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephanie</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-18524</link>
		<dc:creator>Stephanie</dc:creator>
		<pubDate>Thu, 11 Feb 2010 16:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-18524</guid>
		<description>You can use a plugin or the new filters in 2.9 that allow you to change the length. &quot;More details here.&quot;:http://wp-as-cms.com/posts-and-pages/take-control-of-your-excerpts/</description>
		<content:encoded><![CDATA[<p>You can use a plugin or the new filters in 2.9 that allow you to change the length. <a href="http://wp-as-cms.com/posts-and-pages/take-control-of-your-excerpts/">More details here.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miles</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-18523</link>
		<dc:creator>Miles</dc:creator>
		<pubDate>Thu, 11 Feb 2010 16:27:49 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-18523</guid>
		<description>Is there a way to limit the amount of words? Love a bit of help here

Currently it is sticking at 55, want to bring it down to about 15

Thanks dudes</description>
		<content:encoded><![CDATA[<p>Is there a way to limit the amount of words? Love a bit of help here</p>
<p>Currently it is sticking at 55, want to bring it down to about 15</p>
<p>Thanks dudes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Axelmet</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-18051</link>
		<dc:creator>Axelmet</dc:creator>
		<pubDate>Fri, 22 Jan 2010 13:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-18051</guid>
		<description>I solved by removing &quot;Blockqote&quot; in the PHP pages, but it would have been more elegant to change the CSS</description>
		<content:encoded><![CDATA[<p>I solved by removing &#8220;Blockqote&#8221; in the <span class="caps">PHP </span>pages, but it would have been more elegant to change the <span class="caps">CSS</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Axelmet</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-18039</link>
		<dc:creator>Axelmet</dc:creator>
		<pubDate>Fri, 22 Jan 2010 08:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-18039</guid>
		<description>damn translator... I meant &quot;.recent_with_excerpt li blockquote&quot;</description>
		<content:encoded><![CDATA[<p>damn translator&#8230; I meant &#8220;.recent_with_excerpt li blockquote&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Axelmet</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-18038</link>
		<dc:creator>Axelmet</dc:creator>
		<pubDate>Fri, 22 Jan 2010 08:56:30 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-18038</guid>
		<description>I entered. &quot;Recent_with_excerpt them blockquote&quot; in my CCS with some properties. Unfortunately I do not get any change. You have any suggestions?
Thanks</description>
		<content:encoded><![CDATA[<p>I entered. &#8220;Recent_with_excerpt them blockquote&#8221; in my <span class="caps">CCS </span>with some properties. Unfortunately I do not get any change. You have any suggestions?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephanie</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-17764</link>
		<dc:creator>Stephanie</dc:creator>
		<pubDate>Wed, 13 Jan 2010 00:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-17764</guid>
		<description>Catching up on replies in reverse:

Wallace, there&#039;s no good way to use a widget without the rest of the WP structure in place. I think you&#039;d be better off looking for an RSS parser -- SimplePie, if you want PHP, or you could find a javascript-based one -- and using the site&#039;s feed instead of the widget.

Ben, thanks for catching that. I&#039;ll fix it in the next version.

DM, there is no fast and easy way to do that. I&#039;ll play around with it and see if I can work it into a future release.

Theodore, no, not right now.</description>
		<content:encoded><![CDATA[<p>Catching up on replies in reverse:</p>
<p>Wallace, there&#8217;s no good way to use a widget without the rest of the WP structure in place. I think you&#8217;d be better off looking for an <span class="caps">RSS </span>parser &#8212; SimplePie, if you want <span class="caps">PHP, </span>or you could find a javascript-based one &#8212; and using the site&#8217;s feed instead of the widget.</p>
<p>Ben, thanks for catching that. I&#8217;ll fix it in the next version.</p>
<p><span class="caps">DM, </span>there is no fast and easy way to do that. I&#8217;ll play around with it and see if I can work it into a future release.</p>
<p>Theodore, no, not right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wallace</title>
		<link>http://sillybean.net/code/wordpress/recent-posts-with-excerpts/comment-page-1/#comment-17739</link>
		<dc:creator>Wallace</dc:creator>
		<pubDate>Tue, 12 Jan 2010 07:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://sillybean.net/?page_id=2308#comment-17739</guid>
		<description>Hey, I love the plugin, its working great on the main blog page.

I have one question, though.

I am building a website (html and CSS, not a wordpress site), and I have a need to show off &quot;featured posts&quot; on the website.

I&#039;m not sure how to pull just the data from your widget and place it in a div on my site, and I&#039;ve been searching, and looking through code to no avail.

Do you know of any simple ways of doing this? My PHP isn&#039;t very good, and I&#039;m in a bind to get this working as soon as possible.</description>
		<content:encoded><![CDATA[<p>Hey, I love the plugin, its working great on the main blog page.</p>
<p>I have one question, though.</p>
<p>I am building a website (html and <span class="caps">CSS, </span>not a wordpress site), and I have a need to show off &#8220;featured posts&#8221; on the website.</p>
<p>I&#8217;m not sure how to pull just the data from your widget and place it in a div on my site, and I&#8217;ve been searching, and looking through code to no avail.</p>
<p>Do you know of any simple ways of doing this? My <span class="caps">PHP </span>isn&#8217;t very good, and I&#8217;m in a bind to get this working as soon as possible.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
