<?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: Posts by Author Plugin for WordPress</title>
	<atom:link href="http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/</link>
	<description>WordPress Plugins, PHP Scripts, Tools, and Tutorials</description>
	<lastBuildDate>Fri, 06 Nov 2009 17:35:28 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joseph Murphy</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-497958</link>
		<dc:creator>Joseph Murphy</dc:creator>
		<pubDate>Thu, 22 Oct 2009 13:55:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-497958</guid>
		<description>Works like an absolute treat, took the text, popped it into a blank php file, saved and uploaded it, activated and it worked STRAIGHT AWAY!!

Thank you soooooo much :)</description>
		<content:encoded><![CDATA[<p>Works like an absolute treat, took the text, popped it into a blank php file, saved and uploaded it, activated and it worked STRAIGHT AWAY!!</p>
<p>Thank you soooooo much <img src='http://www.dagondesign.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Agatha</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-496120</link>
		<dc:creator>Agatha</dc:creator>
		<pubDate>Tue, 29 Sep 2009 16:39:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-496120</guid>
		<description>Oh, now it&#039;s okkk!! =D</description>
		<content:encoded><![CDATA[<p>Oh, now it&#8217;s okkk!! =D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Agatha</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-496100</link>
		<dc:creator>Agatha</dc:creator>
		<pubDate>Tue, 29 Sep 2009 05:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-496100</guid>
		<description>Where I put  in function.php? When I put it in the finish of the page, occur an error! =/

Thanks!</description>
		<content:encoded><![CDATA[<p>Where I put  in function.php? When I put it in the finish of the page, occur an error! =/</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bfri</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-493494</link>
		<dc:creator>Bfri</dc:creator>
		<pubDate>Wed, 02 Sep 2009 22:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-493494</guid>
		<description>Does the plugin work for anybody on WordPress 2.8.5? It doesn&#039;t show any posts for me no matter if I use &#039;echo ddpa_show_posts();&#039; in single.php or turn &#039;Show at the bottom of every post&#039; on.

It did work without problems in previous WordPress versions.</description>
		<content:encoded><![CDATA[<p>Does the plugin work for anybody on WordPress 2.8.5? It doesn&#8217;t show any posts for me no matter if I use &#8216;echo ddpa_show_posts();&#8217; in single.php or turn &#8216;Show at the bottom of every post&#8217; on.</p>
<p>It did work without problems in previous WordPress versions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Admin</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-482708</link>
		<dc:creator>Admin</dc:creator>
		<pubDate>Wed, 08 Jul 2009 01:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-482708</guid>
		<description>This plugin has been tested, and works, in the latest release of WordPress - 2.8

&lt;strong&gt;Josh&lt;/strong&gt;: Assuming you are using a recent version of WP, replace the last instances of this line in the script:

&lt;code&gt;{$exclude_check}&lt;/code&gt;

With this:

&lt;code&gt; AND ( {$tp}term_taxonomy.term_id == 10 
OR {$tp}term_taxonomy.term_id == 20 
OR {$tp}term_taxonomy.term_id == 30 )&lt;/code&gt;

Where 10, 20, and 30 are the categories you want to include, etc..

&lt;strong&gt;Alan&lt;/strong&gt;: Should be. Just modify this line so it assigns the user ID of the logged in user:

&lt;code&gt;$c_author_id = $post-&gt;post_author;&lt;/code&gt;

I do not recall the variable for it off hand, but it is in the WP documentation.

&lt;strong&gt;Others&lt;/strong&gt;

The plugin will not work outside the loop, because the ID of the current author only exists within the loop. Outside the loop, WP does not &#039;know&#039; who the author of the page being viewed is. There are methods to allow this to happen, but the plugin does not currently support this feature.</description>
		<content:encoded><![CDATA[<p>This plugin has been tested, and works, in the latest release of WordPress &#8211; 2.8</p>
<p><strong>Josh</strong>: Assuming you are using a recent version of WP, replace the last instances of this line in the script:</p>
<p><code>{$exclude_check}</code></p>
<p>With this:</p>
<p><pre><code> AND ( {$tp}term_taxonomy.term_id == 10 
OR {$tp}term_taxonomy.term_id == 20 
OR {$tp}term_taxonomy.term_id == 30 )</code></pre></p>
<p>Where 10, 20, and 30 are the categories you want to include, etc..</p>
<p><strong>Alan</strong>: Should be. Just modify this line so it assigns the user ID of the logged in user:</p>
<p><code>$c_author_id = $post-&gt;post_author;</code></p>
<p>I do not recall the variable for it off hand, but it is in the WP documentation.</p>
<p><strong>Others</strong></p>
<p>The plugin will not work outside the loop, because the ID of the current author only exists within the loop. Outside the loop, WP does not &#8216;know&#8217; who the author of the page being viewed is. There are methods to allow this to happen, but the plugin does not currently support this feature.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Kadis</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-481854</link>
		<dc:creator>Josh Kadis</dc:creator>
		<pubDate>Fri, 26 Jun 2009 01:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-481854</guid>
		<description>Is there a way I can modify the plugin so that it only lists posts from specified categories? The opposite of the exclude categories feature.</description>
		<content:encoded><![CDATA[<p>Is there a way I can modify the plugin so that it only lists posts from specified categories? The opposite of the exclude categories feature.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-481245</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Sat, 20 Jun 2009 00:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-481245</guid>
		<description>Hi,

Is it possible to alter the plugin so it displays the latest posts from the currently logged in user?

I would like to add this to my sidebar.

Thanks!!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Is it possible to alter the plugin so it displays the latest posts from the currently logged in user?</p>
<p>I would like to add this to my sidebar.</p>
<p>Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jenny</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-479578</link>
		<dc:creator>Jenny</dc:creator>
		<pubDate>Thu, 04 Jun 2009 22:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-479578</guid>
		<description>Hi,

How do I rename the text file as php, please?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How do I rename the text file as php, please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-477634</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Thu, 21 May 2009 09:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-477634</guid>
		<description>Would be great but to use outside the loop...</description>
		<content:encoded><![CDATA[<p>Would be great but to use outside the loop&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pranoy sinha</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-477260</link>
		<dc:creator>pranoy sinha</dc:creator>
		<pubDate>Mon, 18 May 2009 09:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-477260</guid>
		<description>Great plugin.. very useful one.. works great in my wordpress site version 2.7.1. But i want it to show in sidebar and with the author image with the existing feature as well. Can you pls help me..</description>
		<content:encoded><![CDATA[<p>Great plugin.. very useful one.. works great in my wordpress site version 2.7.1. But i want it to show in sidebar and with the author image with the existing feature as well. Can you pls help me..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aditya</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-477216</link>
		<dc:creator>Aditya</dc:creator>
		<pubDate>Sun, 17 May 2009 17:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-477216</guid>
		<description>bug: it doesn&#039;t show the last new post...using wp 2.7

great concept...loved it!</description>
		<content:encoded><![CDATA[<p>bug: it doesn&#8217;t show the last new post&#8230;using wp 2.7</p>
<p>great concept&#8230;loved it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: srikanth ad</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-477097</link>
		<dc:creator>srikanth ad</dc:creator>
		<pubDate>Sat, 16 May 2009 11:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-477097</guid>
		<description>I&#039;m using this plugin for our blog
thanks for incredible support.

~cheers</description>
		<content:encoded><![CDATA[<p>I&#8217;m using this plugin for our blog<br />
thanks for incredible support.</p>
<p>~cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eses</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-477056</link>
		<dc:creator>Eses</dc:creator>
		<pubDate>Sat, 16 May 2009 00:32:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-477056</guid>
		<description>Fatal error: Cannot redeclare ddpa_add_option_pages() (previously declared in /home/xxx/public_html/wp-content/plugins/dd-posts-by-author.php:26) in /home/xxx/public_html/wp-content/plugins/dd-posts-by-author.php

Help pls.</description>
		<content:encoded><![CDATA[<p>Fatal error: Cannot redeclare ddpa_add_option_pages() (previously declared in /home/xxx/public_html/wp-content/plugins/dd-posts-by-author.php:26) in /home/xxx/public_html/wp-content/plugins/dd-posts-by-author.php</p>
<p>Help pls.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-477012</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 15 May 2009 18:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-477012</guid>
		<description>Sorry about that comment. It just isn&#039;t showing on the index page so it IS working. 

Thanks!</description>
		<content:encoded><![CDATA[<p>Sorry about that comment. It just isn&#8217;t showing on the index page so it IS working. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-477011</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 15 May 2009 18:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-477011</guid>
		<description>I&#039;ve added this plugin to 2.7.1 but it&#039;s not appearing below the posts, nor at all. It is enabled and checked off to show on all posts. 

I may need to hardcode it in the index page. Any help?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve added this plugin to 2.7.1 but it&#8217;s not appearing below the posts, nor at all. It is enabled and checked off to show on all posts. </p>
<p>I may need to hardcode it in the index page. Any help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bfri</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-476061</link>
		<dc:creator>Bfri</dc:creator>
		<pubDate>Wed, 22 Apr 2009 23:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-476061</guid>
		<description>I searched for a plugin which shows the author name on the post page but this plugin is even better. Thanks for that.

Since I use also a similar posts plugin and wanted to show other author&#039;s posts below I had to turn &quot;Show at the bottom of every post&quot; off and did include it in my single.php template:

&lt;code&gt;
&lt;!-- START: show last posts from author --&gt;
&lt;?php echo ddpa_show_posts(); ?&gt;
&lt;!-- END: show last posts from author --&gt;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I searched for a plugin which shows the author name on the post page but this plugin is even better. Thanks for that.</p>
<p>Since I use also a similar posts plugin and wanted to show other author&#8217;s posts below I had to turn &#8220;Show at the bottom of every post&#8221; off and did include it in my single.php template:</p>
<p><pre><code>
&lt;!-- START: show last posts from author --&gt;
&lt;?php echo ddpa_show_posts(); ?&gt;
&lt;!-- END: show last posts from author --&gt;
</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-473688</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Mon, 30 Mar 2009 20:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-473688</guid>
		<description>Sorry about that last comment, I figured out that the issue was my own.  It was a CSS styling problem that only revealed itself once using your plugin.

Sorry again.</description>
		<content:encoded><![CDATA[<p>Sorry about that last comment, I figured out that the issue was my own.  It was a CSS styling problem that only revealed itself once using your plugin.</p>
<p>Sorry again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-473686</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Mon, 30 Mar 2009 19:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-473686</guid>
		<description>Great plugin and I am currently using it as part of a website I am currently developing.

I have modified the plugin so that it displays the excerpt from the posts rather than the name, but it works the same none the less.

One question though:

Is there some type of built in Cache for this plugin?  The reason I ask is that I made a bunch of test posts today and they are still not showing up in the listing.  I have the number of posts to show set at 10 but it is still only showing 2 posts.  This is happening regardless of if I use the original plugin files or the one I modified.

Ive played with all relevant plugin settings but have come up with nothing.  Ive even tried de-activating it but that does nothing as well.

Any ideas?</description>
		<content:encoded><![CDATA[<p>Great plugin and I am currently using it as part of a website I am currently developing.</p>
<p>I have modified the plugin so that it displays the excerpt from the posts rather than the name, but it works the same none the less.</p>
<p>One question though:</p>
<p>Is there some type of built in Cache for this plugin?  The reason I ask is that I made a bunch of test posts today and they are still not showing up in the listing.  I have the number of posts to show set at 10 but it is still only showing 2 posts.  This is happening regardless of if I use the original plugin files or the one I modified.</p>
<p>Ive played with all relevant plugin settings but have come up with nothing.  Ive even tried de-activating it but that does nothing as well.</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-471546</link>
		<dc:creator>Ted</dc:creator>
		<pubDate>Fri, 13 Mar 2009 17:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-471546</guid>
		<description>Hi, how can I put the post-by-author&#039;s list in the file index.php? I&#039;ve to place the list out of the loop.</description>
		<content:encoded><![CDATA[<p>Hi, how can I put the post-by-author&#8217;s list in the file index.php? I&#8217;ve to place the list out of the loop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Admin</title>
		<link>http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/comment-page-3/#comment-469837</link>
		<dc:creator>Admin</dc:creator>
		<pubDate>Sun, 22 Feb 2009 20:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/#comment-469837</guid>
		<description>&lt;strong&gt;Version 1.7 Released&lt;/strong&gt;

This version has been tested in the latest release of WordPress (2.7.1)

Several people commented that the category exclusion feature was not working. It was, but not in the way some people may have intended.

The category exclusion option simply prevented posts in particular categories from being added to the list of posts by author. It did not effect *where* the list would be shown.

A new option has been added so that you can also exclude certain category IDs from showing the list at all. Enjoy!</description>
		<content:encoded><![CDATA[<p><strong>Version 1.7 Released</strong></p>
<p>This version has been tested in the latest release of WordPress (2.7.1)</p>
<p>Several people commented that the category exclusion feature was not working. It was, but not in the way some people may have intended.</p>
<p>The category exclusion option simply prevented posts in particular categories from being added to the list of posts by author. It did not effect *where* the list would be shown.</p>
<p>A new option has been added so that you can also exclude certain category IDs from showing the list at all. Enjoy!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
