Another option is to simply skip the messages in the loop that belong to a particular author. For example:
<?php if (get_post_author($post) == "wade") continue; ?>
This would be useful if you use multiple loops on a page and want to filter out messages from specific users without creating multiple WP_Querys.
source
share