<?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: How to Display an Author List with Avatars in WordPress Contributors Page</title>
	<atom:link href="http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/</link>
	<description>Beginner&#039;s Guide for WordPress</description>
	<lastBuildDate>Tue, 27 Jul 2010 18:58:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Angel Del Rosario</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-21719</link>
		<dc:creator>Angel Del Rosario</dc:creator>
		<pubDate>Tue, 15 Jun 2010 11:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-21719</guid>
		<description>Hello, I thought the one that will appear is the author&#039;s uploaded photo using the user-photo plugin but what is showing is their gravatar.</description>
		<content:encoded><![CDATA[<p>Hello, I thought the one that will appear is the author&#8217;s uploaded photo using the user-photo plugin but what is showing is their gravatar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bert</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-20532</link>
		<dc:creator>Bert</dc:creator>
		<pubDate>Thu, 03 Jun 2010 23:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-20532</guid>
		<description>Love this tut. Exactly the type of function I am looking for.

Quick question.

Do you have an easy way to display the latest post authored by each author and have that be hyperlinked?</description>
		<content:encoded><![CDATA[<p>Love this tut. Exactly the type of function I am looking for.</p>
<p>Quick question.</p>
<p>Do you have an easy way to display the latest post authored by each author and have that be hyperlinked?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-20311</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 02 Jun 2010 03:05:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-20311</guid>
		<description>This is awesome! Thanks.

How do you set a maximum number of authors to show? This site has 10+ writers but in a particular area we only want to show 6.

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>This is awesome! Thanks.</p>
<p>How do you set a maximum number of authors to show? This site has 10+ writers but in a particular area we only want to show 6.</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editorial Staff</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-18599</link>
		<dc:creator>Editorial Staff</dc:creator>
		<pubDate>Thu, 20 May 2010 11:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-18599</guid>
		<description>You would call the function in your sidebar.php file. Change the order_by parameter to post count in descending order.</description>
		<content:encoded><![CDATA[<p>You would call the function in your sidebar.php file. Change the order_by parameter to post count in descending order.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Cooper</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-18531</link>
		<dc:creator>Kevin Cooper</dc:creator>
		<pubDate>Wed, 19 May 2010 16:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-18531</guid>
		<description>How can I create this to add to the sidebar and have a function where the author with the most recent post appears on top and the title of their recent blog post? Thanks for the help</description>
		<content:encoded><![CDATA[<p>How can I create this to add to the sidebar and have a function where the author with the most recent post appears on top and the title of their recent blog post? Thanks for the help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lindsey</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-17946</link>
		<dc:creator>Lindsey</dc:creator>
		<pubDate>Fri, 14 May 2010 16:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-17946</guid>
		<description>Nevermind, found a solution with : 

$authors = $wpdb-&gt;get_results(&quot;SELECT ID, user_nicename from $wpdb-&gt;users WHERE id IN (&#039;3&#039;,&#039;5&#039;,&#039;6&#039;) ORDER BY user_login&quot;);

If anyone has pointers for ordering the authors by last post date, that&#039;s my ideal use.</description>
		<content:encoded><![CDATA[<p>Nevermind, found a solution with : </p>
<p>$authors = $wpdb-&gt;get_results(&#8220;SELECT ID, user_nicename from $wpdb-&gt;users WHERE id IN (&#8217;3&#8242;,&#8217;5&#8242;,&#8217;6&#8242;) ORDER BY user_login&#8221;);</p>
<p>If anyone has pointers for ordering the authors by last post date, that&#8217;s my ideal use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lindsey</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-17468</link>
		<dc:creator>Lindsey</dc:creator>
		<pubDate>Wed, 12 May 2010 22:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-17468</guid>
		<description>Hi, great tutorial! Thank you. I&#039;m using this on one blog of a WPMU/BP installation so I can&#039;t restrict the list by user role without getting other blog authors/admins listed. Is there a way to restrict by blog_ID? I&#039;m searching around, but I&#039;m not sure what to use. 

I thought it&#039;d be something where the (&quot;SELECT ID, user_nicename from $wpdb-&gt;users WHERE display_name  &#039;admin&#039; ORDER BY display_name&quot;) should be changed to something like &quot;WHERE blog_id = &#039;4&#039;...&quot; but that didn&#039;t work. Any help would be appreciated! Thanks!</description>
		<content:encoded><![CDATA[<p>Hi, great tutorial! Thank you. I&#8217;m using this on one blog of a WPMU/BP installation so I can&#8217;t restrict the list by user role without getting other blog authors/admins listed. Is there a way to restrict by blog_ID? I&#8217;m searching around, but I&#8217;m not sure what to use. </p>
<p>I thought it&#8217;d be something where the (&#8220;SELECT ID, user_nicename from $wpdb-&gt;users WHERE display_name  &#8216;admin&#8217; ORDER BY display_name&#8221;) should be changed to something like &#8220;WHERE blog_id = &#8217;4&#8242;&#8230;&#8221; but that didn&#8217;t work. Any help would be appreciated! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charly</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-13951</link>
		<dc:creator>Charly</dc:creator>
		<pubDate>Tue, 20 Apr 2010 20:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-13951</guid>
		<description>I got it working!! Great code!
But i cant filter the list by user role (admin, subscriptor, editor, etc..) and filter the amount of user displayed.

Someone could? Any ideas? 
Thanks in advance!</description>
		<content:encoded><![CDATA[<p>I got it working!! Great code!<br />
But i cant filter the list by user role (admin, subscriptor, editor, etc..) and filter the amount of user displayed.</p>
<p>Someone could? Any ideas?<br />
Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editorial Staff</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-8841</link>
		<dc:creator>Editorial Staff</dc:creator>
		<pubDate>Wed, 10 Feb 2010 20:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-8841</guid>
		<description>Yes exactly right. You replace the function you don&#039;t want and add the function that you want.

http://codex.wordpress.org/Author_Templates

Use the above link as a guide.</description>
		<content:encoded><![CDATA[<p>Yes exactly right. You replace the function you don&#8217;t want and add the function that you want.</p>
<p><a href="http://codex.wordpress.org/Author_Templates" rel="nofollow">http://codex.wordpress.org/Author_Templates</a></p>
<p>Use the above link as a guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arron Davies</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-8827</link>
		<dc:creator>Arron Davies</dc:creator>
		<pubDate>Wed, 10 Feb 2010 18:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-8827</guid>
		<description>sorry me again, I&#039;m assuming its adding the function and removing another.</description>
		<content:encoded><![CDATA[<p>sorry me again, I&#8217;m assuming its adding the function and removing another.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
