I am trying to build a list of all authors who have posted articles in my weblog. I tried:
<ul>
{exp:weblog:entries weblog="{my_weblog}"}
<li class="author"><a href="{path="/authors"}{username}">{author}</a></li>
{/exp:weblog:entries}
</ul>
This pulls the correct type of information, but displays several duplicates of each author. I also tried:
<ul>
{exp:query sql="SELECT screen_name FROM exp_members"}
<li class="tag"><a href="{path="/authors"}{username}">{screen_name}</a></li>
{/exp:query}
</ul>
However, this displays ALL members (including admins), not just those who have posted to the weblog.
How do I pull only published authors from my weblog and limit each author to a single appearance in the list?
