I want to be able to filter out the comments made by a post's authors (using the co author plus plugin to allow more than one). This is so that I can show a conversation between two or more people. I have some pseudo code but I can't for the life of me work it into real workable stuff.
<div> The match: </div>
<ul class="auth_comment_list">
<?php \\wp_list_comments where comment_author = one of the coauthors ?>
</ul>
<div> here are all the other comments from non authors....</div>
<ul class="comment_list">
<?php \\wp_list_comments where comment_author != one of the coauthors ?>
</ul>
Any and all help greatly appreciated!