<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"	>
<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>Fri, 10 Feb 2012 00:50:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: arionarian</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-124207</link>
		<dc:creator>arionarian</dc:creator>
		<pubDate>Wed, 09 Nov 2011 15:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-124207</guid>
		<description>thanks again for this useful tutorial :), now i have a list of contributor on my wordpress theme :)</description>
		<content:encoded><![CDATA[<p>thanks again for this useful tutorial <img src='http://cdn.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , now i have a list of contributor on my wordpress theme <img src='http://cdn.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: someonegetsteve</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-122361</link>
		<dc:creator>someonegetsteve</dc:creator>
		<pubDate>Mon, 25 Jul 2011 14:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-122361</guid>
		<description>@KayeBarnes I use the get_user function instead that came in with WP 3.1 which has the role and include(or exclude) parameters to filter only a certain role and users by their IDs...example:&lt;br/&gt;&lt;br/&gt; &lt;br/&gt;&lt;br/&gt;function contributors() {&lt;br/&gt;&lt;br/&gt;global $wpdb;&lt;br/&gt;&lt;br/&gt;$blogusers = get_users(&#039;role=author&amp;exclude=7,8,9&#039;);   &lt;br/&gt;&lt;br/&gt;foreach ($blogusers as $user) {&lt;br/&gt;&lt;br/&gt;echo &quot;&lt;li&gt;&quot;;&lt;br/&gt;&lt;br/&gt;echo $user-&gt;user_email ;&lt;br/&gt;&lt;br/&gt;echo $user-&gt;display_name;&lt;br/&gt;&lt;br/&gt;echo &quot;&lt;a href=&quot;&quot;.get_bloginfo(&#039;url&#039;).&quot;/author/&quot;;&lt;br/&gt;&lt;br/&gt;echo $user-&gt;user_nicename;&lt;br/&gt;&lt;br/&gt;echo &quot;/&quot;&gt;&quot;;&lt;br/&gt;&lt;br/&gt;echo get_avatar ($user-&gt;ID);echo &quot;&lt;/a&gt;&quot;;&lt;br/&gt;&lt;br/&gt;echo &quot;&lt;/li&gt;&quot;; &lt;br/&gt;&lt;br/&gt;}&lt;br/&gt;&lt;br/&gt;}</description>
		<content:encoded><![CDATA[<p>@KayeBarnes I use the get_user function instead that came in with WP 3.1 which has the role and include(or exclude) parameters to filter only a certain role and users by their IDs&#8230;example:</p>
<p>function contributors() {</p>
<p>global $wpdb;</p>
<p>$blogusers = get_users(&#8216;role=author&amp;exclude=7,8,9&#8242;);   </p>
<p>foreach ($blogusers as $user) {</p>
<p>echo &#8220;&lt;li&gt;&#8221;;</p>
<p>echo $user-&gt;user_email ;</p>
<p>echo $user-&gt;display_name;</p>
<p>echo &#8220;&lt;a href=&#8221;".get_bloginfo(&#8216;url&#8217;).&#8221;/author/&#8221;;</p>
<p>echo $user-&gt;user_nicename;</p>
<p>echo &#8220;/&#8221;&gt;&#8221;;</p>
<p>echo get_avatar ($user-&gt;ID);echo &#8220;&lt;/a&gt;&#8221;;</p>
<p>echo &#8220;&lt;/li&gt;&#8221;; </p>
<p>}</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: markwinsf</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-122239</link>
		<dc:creator>markwinsf</dc:creator>
		<pubDate>Tue, 19 Jul 2011 21:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-122239</guid>
		<description>In case anyone can help and needs reference to how to add the custom fields to the code in this tutorial, I&#039;ve been doing it like this...

 

$order = get_cimyFieldValue($author-&gt;ID, &#039;CHAIN_OF_COMMAND&#039;);

echo cimy_uef_sanitize_content($order);</description>
		<content:encoded><![CDATA[<p>In case anyone can help and needs reference to how to add the custom fields to the code in this tutorial, I&#8217;ve been doing it like this&#8230;</p>
<p>$order = get_cimyFieldValue($author-&gt;ID, &#8216;CHAIN_OF_COMMAND&#8217;);</p>
<p>echo cimy_uef_sanitize_content($order);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: markwinsf</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-122238</link>
		<dc:creator>markwinsf</dc:creator>
		<pubDate>Tue, 19 Jul 2011 21:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-122238</guid>
		<description>This is almost totally awesome, but I&#039;m trying to order the authors (who are architects in a typically hierarchical firm) by a custom field (created with the Cimy User Extra Fields plugin) that has a number in it. So instead of this...

 

$authors = $wpdb-&gt;get_results(&quot;SELECT ID, user_nicename from $wpdb-&gt;users WHERE display_name &lt;&gt; &#039;admin&#039; ORDER BY ID&quot;);

 

... I&#039;d like to sort by a pecking order field that runs from 1-10. Any ideas out there in wpbeginner land?</description>
		<content:encoded><![CDATA[<p>This is almost totally awesome, but I&#8217;m trying to order the authors (who are architects in a typically hierarchical firm) by a custom field (created with the Cimy User Extra Fields plugin) that has a number in it. So instead of this&#8230;</p>
<p>$authors = $wpdb-&gt;get_results(&#8220;SELECT ID, user_nicename from $wpdb-&gt;users WHERE display_name &lt;&gt; &#8216;admin&#8217; ORDER BY ID&#8221;);</p>
<p>&#8230; I&#8217;d like to sort by a pecking order field that runs from 1-10. Any ideas out there in wpbeginner land?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KayeBarnes</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-121367</link>
		<dc:creator>KayeBarnes</dc:creator>
		<pubDate>Mon, 20 Jun 2011 19:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-121367</guid>
		<description>Is there a way to exclude users by either name (such as the originating admin user) and role (subscribers)?</description>
		<content:encoded><![CDATA[<p>Is there a way to exclude users by either name (such as the originating admin user) and role (subscribers)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FabioFask</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-120643</link>
		<dc:creator>FabioFask</dc:creator>
		<pubDate>Tue, 07 Jun 2011 08:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-120643</guid>
		<description>ok I found a very clean solution: http://www.youtube.com/watch?v=R-AQ_HBYZbc&amp;feature=relmfu</description>
		<content:encoded><![CDATA[<p>ok I found a very clean solution: <a href="http://www.youtube.com/watch?v=R-AQ_HBYZbc&#038;feature=relmfu" rel="nofollow">http://www.youtube.com/watch?v=R-AQ_HBYZbc&#038;feature=relmfu</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FabioFask</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-119932</link>
		<dc:creator>FabioFask</dc:creator>
		<pubDate>Sat, 28 May 2011 18:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-119932</guid>
		<description>hello guys, there are still new to impaginations? I am willing to pay if you want ..</description>
		<content:encoded><![CDATA[<p>hello guys, there are still new to impaginations? I am willing to pay if you want ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fask</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-87794</link>
		<dc:creator>Fask</dc:creator>
		<pubDate>Thu, 17 Mar 2011 19:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-87794</guid>
		<description>this is good news ..... I look forward to updating .... thank you</description>
		<content:encoded><![CDATA[<p>this is good news &#8230;.. I look forward to updating &#8230;. thank you</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-87731</link>
		<dc:creator>Editorial Staff</dc:creator>
		<pubDate>Thu, 17 Mar 2011 14:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-87731</guid>
		<description>You are welcome. Your suggestion is very good, and our developer liked the suggestion. According to him, we will be releasing a new tutorial soon that will do that :) (No time estimates though)</description>
		<content:encoded><![CDATA[<p>You are welcome. Your suggestion is very good, and our developer liked the suggestion. According to him, we will be releasing a new tutorial soon that will do that <img src='http://cdn.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (No time estimates though)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fask</title>
		<link>http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/comment-page-1/#comment-87122</link>
		<dc:creator>Fask</dc:creator>
		<pubDate>Tue, 15 Mar 2011 14:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1172#comment-87122</guid>
		<description>ok thanks anyway.</description>
		<content:encoded><![CDATA[<p>ok thanks anyway.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Content Delivery Network via cdn.wpbeginner.com

Served from: www.wpbeginner.com @ 2012-02-10 17:37:19 -->
