A preset on the method WOOF_PostType::in_a method to retrieve a list of posts for this post type that are not attached to one or more given taxonomy terms.
This method uses get_posts to retrieve the posts, so you can further clarify this query with the args parameter.
This class also contains a whole host of aliases to this method, which allow you to almost spell out other scenarios in close-to-English ways.
Parameters:
-
An array or CSV string of terms to check for.
-
The name of the taxonomy to check against.
-
An arguments array or string further clarifying the query used to retrieve the matching posts, with defaults:
- orderby => “name”
- order => “asc”
- posts_per_page => -1
- post_type => The name of this post type (enforced, cannot be changed)
- tax_query => The taxonomy query to match the other arguments provided (enforced)