Checks whether the current query has any OR relations.
In some cases, the presence of an OR relation somewhere in the query will require the use of a DISTINCT
or GROUP BY
keyword in the SELECT
clause. The current method can be used in these cases to determine whether such a clause is necessary.
(bool) True if the query contains any OR
relations, otherwise false.
File: wp-includes/class-wp-meta-query.php
public function has_or_relation() { return $this->has_or_relation; }
Version | Description |
---|---|
4.3.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_meta_query/has_or_relation