Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #29885, comment 11


Ignore:
Timestamp:
10/08/2014 12:48:21 PM (10 years ago)
Author:
chriscct7
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29885, comment 11

    initial v1  
    33>
    44> The only problem I can see is the lack of `user_id__not_in` which would also break the convention with `user_id`.
     5
     6The problem with `author_email` is I want to do exactly opposite of what it does. For example, your patch adds `post_author__not_in` which, if passed a single int id, does the exact opposite of using `post_author`. I'm looking for the ability to get comments that are not written by a specific person, so we'd probably need a `comment_author__in` and `comment_author__not_in`.
     7
     8Does that make sense?