Community Support Forums — WordPress® ( Users Helping Users ) — 2011-08-28T01:57:37-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=14734 2011-08-28T01:57:37-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14734&p=33168#p33168 <![CDATA[Re: Browse User Display]]>
I suggest you search the forum for "members list", there have been several threads in the past about it.

One useful plugin for this has been https://wordpress.org/extend/plugins/members-list/

You could also custom script this with something around this example:

Code:
$level1_users = get_users('role=s2member_level1');
foreach ($level1_users as $user) {
    echo '<li>' . $user->display_name . '</li>';
}
 


https://codex.wordpress.org/Function_Re ... /get_users

I hope this helps. :)

Statistics: Posted by Cristián Lávaque — August 28th, 2011, 1:57 am


]]>
2011-08-27T16:15:32-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14734&p=33109#p33109 <![CDATA[Browse User Display]]> Statistics: Posted by steve redmond — August 27th, 2011, 4:15 pm


]]>