I'm using the below query to query a list of recent posts in my sidebar.
How would I modify this so it doesn't repeat the same author twice in the lists of posts?
Thanks in advance.
<?php $recent = new WP_Query("showposts=15"); while($recent->have_posts()) : $recent->the_post();?>