Tribe__Repository::where_args( array $args )
Batch filter application method.
Contents
This is the same as calling where multiple times with different arguments.
Parameters
- $args
-
(array) (Required) An associative array of arguments to filter the posts by in the shape [ <key>, <value> ].
Return
(Tribe__Repository__Read_Interface|Tribe__Repository__Update_Interface)
Source
File: src/Tribe/Repository.php
public function where_args( array $args ) {
return $this->by_args( $args );
}
Changelog
| Version | Description |
|---|---|
| 4.7.19 | Introduced. |