<?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: WordPress Plugin: Latest Posts by Author</title>
	<atom:link href="http://alexmansfield.com/wordpress/latest-posts-by-author/feed" rel="self" type="application/rss+xml" />
	<link>http://alexmansfield.com/plugins/latest-posts-by-author</link>
	<description>WordPress Developer</description>
	<lastBuildDate>Sat, 14 Apr 2012 06:13:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: alexmansfield</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-1160</link>
		<dc:creator>alexmansfield</dc:creator>
		<pubDate>Thu, 16 Feb 2012 21:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-1160</guid>
		<description>Thanks, and you&#039;re welcome!</description>
		<content:encoded><![CDATA[<p>Thanks, and you&#8217;re welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Rugile</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-1159</link>
		<dc:creator>Jack Rugile</dc:creator>
		<pubDate>Thu, 16 Feb 2012 21:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-1159</guid>
		<description>The new version looks great. Thank you for the credit, and good luck with future plugins!</description>
		<content:encoded><![CDATA[<p>The new version looks great. Thank you for the credit, and good luck with future plugins!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexmansfield</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-1158</link>
		<dc:creator>alexmansfield</dc:creator>
		<pubDate>Thu, 16 Feb 2012 21:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-1158</guid>
		<description>After a little research, I decide to rewrite my plugin using the WP_Query class rather than the $wpdb object. Rather than running a SQL query directly, it uses the standard WordPress query methods. I believe the &quot;posts-per-page&quot; setting in the new plugin code should restrict the amount of data pulled from the database. Let me know if you have any issues with the new version. Also, I credited you in the changelog: http://wordpress.org/extend/plugins/latest-posts-by-author/changelog/</description>
		<content:encoded><![CDATA[<p>After a little research, I decide to rewrite my plugin using the WP_Query class rather than the $wpdb object. Rather than running a SQL query directly, it uses the standard WordPress query methods. I believe the &#8220;posts-per-page&#8221; setting in the new plugin code should restrict the amount of data pulled from the database. Let me know if you have any issues with the new version. Also, I credited you in the changelog: <a href="http://wordpress.org/extend/plugins/latest-posts-by-author/changelog/" rel="nofollow">http://wordpress.org/extend/plugins/latest-posts-by-author/changelog/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexmansfield</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-1157</link>
		<dc:creator>alexmansfield</dc:creator>
		<pubDate>Thu, 16 Feb 2012 20:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-1157</guid>
		<description>That&#039;s a really good point. I&#039;ll have to look into that and get back to you.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a really good point. I&#8217;ll have to look into that and get back to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Rugile</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-1156</link>
		<dc:creator>Jack Rugile</dc:creator>
		<pubDate>Thu, 16 Feb 2012 20:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-1156</guid>
		<description>Hey, thanks for the great plugin! Everything is working well. I just had a quick question.

I am concerned about performance for an author that has a large number of posts. The MySQL query seems to grab all of the author&#039;s posts, then loop through until the iterator reaches the value of $show, then break the loop. To increase performance and only grab what you need from the database, can&#039;t you add &quot;LIMIT $show&quot; to the end of the query (line20), and drop the for loop altogether? I don&#039;t know if this is possible (I don&#039;t work much with MySQL queries when it comes to WordPress, just wanted to throw it out there).

Let me know your thoughts, and thanks again!</description>
		<content:encoded><![CDATA[<p>Hey, thanks for the great plugin! Everything is working well. I just had a quick question.</p>
<p>I am concerned about performance for an author that has a large number of posts. The MySQL query seems to grab all of the author&#8217;s posts, then loop through until the iterator reaches the value of $show, then break the loop. To increase performance and only grab what you need from the database, can&#8217;t you add &#8220;LIMIT $show&#8221; to the end of the query (line20), and drop the for loop altogether? I don&#8217;t know if this is possible (I don&#8217;t work much with MySQL queries when it comes to WordPress, just wanted to throw it out there).</p>
<p>Let me know your thoughts, and thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexmansfield</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-456</link>
		<dc:creator>alexmansfield</dc:creator>
		<pubDate>Fri, 24 Jun 2011 03:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-456</guid>
		<description>I changed line 24, so now it should be grabbing the permalink rather than using $post-&gt;guid. It turns out $post-&gt;guid isn&#039;t recommended for use in this situation anyway. I&#039;ve updated both my plugin in the WordPress repository and the code posted on this page. Thanks for pointing out the permalink issue.</description>
		<content:encoded><![CDATA[<p>I changed line 24, so now it should be grabbing the permalink rather than using $post->guid. It turns out $post->guid isn&#8217;t recommended for use in this situation anyway. I&#8217;ve updated both my plugin in the WordPress repository and the code posted on this page. Thanks for pointing out the permalink issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-433</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 05 Jun 2011 15:12:51 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-433</guid>
		<description>I think Antoine was referring to the fact that this plug in outputs the URLs as: domain.com/?p=1234 as opposed to domain.com/post-title/ Is this possible to accomplish using this plug in?</description>
		<content:encoded><![CDATA[<p>I think Antoine was referring to the fact that this plug in outputs the URLs as: domain.com/?p=1234 as opposed to domain.com/post-title/ Is this possible to accomplish using this plug in?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-432</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 05 Jun 2011 04:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-432</guid>
		<description>I think what Antoine was referring to is that the list of related posts this plug in outputs don&#039;t have the permalink /domain/article-title as the URL they have the domain.com/?p=1234.

Is there a way to modify the plug in to output the permalink URL as opposed to the default?</description>
		<content:encoded><![CDATA[<p>I think what Antoine was referring to is that the list of related posts this plug in outputs don&#8217;t have the permalink /domain/article-title as the URL they have the domain.com/?p=1234.</p>
<p>Is there a way to modify the plug in to output the permalink URL as opposed to the default?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexmansfield</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-88</link>
		<dc:creator>alexmansfield</dc:creator>
		<pubDate>Wed, 15 Dec 2010 05:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-88</guid>
		<description>@Deron Sorry for the delay. If you haven&#039;t figured it out already, you should be able to increase the spacing by adding margin and/or padding to the &quot;.latestbyauthor li&quot; elements with CSS.</description>
		<content:encoded><![CDATA[<p>@Deron Sorry for the delay. If you haven&#8217;t figured it out already, you should be able to increase the spacing by adding margin and/or padding to the &#8220;.latestbyauthor li&#8221; elements with CSS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexmansfield</title>
		<link>http://alexmansfield.com/plugins/latest-posts-by-author#comment-87</link>
		<dc:creator>alexmansfield</dc:creator>
		<pubDate>Wed, 15 Dec 2010 05:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://alexmansfield.com/?p=377#comment-87</guid>
		<description>@dzu I wrote this plugin before WordPress added post thumbnail support, so it isn&#039;t built in at the moment. You can find the code to work with post thumbnails in the WordPress documentation:

http://codex.wordpress.org/Function_Reference/the_post_thumbnail

...and yes, it should work in the single page template.</description>
		<content:encoded><![CDATA[<p>@dzu I wrote this plugin before WordPress added post thumbnail support, so it isn&#8217;t built in at the moment. You can find the code to work with post thumbnails in the WordPress documentation:</p>
<p><a href="http://codex.wordpress.org/Function_Reference/the_post_thumbnail" rel="nofollow">http://codex.wordpress.org/Function_Reference/the_post_thumbnail</a></p>
<p>&#8230;and yes, it should work in the single page template.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

