I am looking for a way to display/list all users by categories that they are assigned to. It is a functionality similar to Weblog Category Archive List but would be preformed on users.
The resulting output would be something like this:
<ul>
<li>Slovakia
<ul>
<li>User A</li>
<li>User B</li>
<li>User C</li>
</ul>
</li>
<li>Poland
<ul>
<li>User D</li>
<li>User E</li>
<li>User F</li>
</ul>
</li>
<li>Czech Republic
<ul>
<li>User G</li>
<li>User H</li>
<li>User I</li>
</ul>
</li>
</ul>
in case the users were assigned to those three categories: Slovakia, Poland, Czech Republic
Thanks in advance
