Tribe__Repository::where_args( array $args )

Batch filter application method.

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> ].


Top ↑

Return

(Tribe__Repository__Read_Interface|Tribe__Repository__Update_Interface)


Top ↑

Source

File: src/Tribe/Repository.php

	public function where_args( array $args ) {
		return $this->by_args( $args );
	}

Top ↑

Changelog

Changelog
Version Description
4.7.19 Introduced.