WP_Meta_Query::is_first_order_clause( array $query )

Determine whether a query clause is first-order.


Description Description

A first-order meta query clause is one that has either a ‘key’ or a ‘value’ array key.


Parameters Parameters

$query

(array) (Required) Meta query arguments.


Top ↑

Return Return

(bool) Whether the query clause is a first-order clause.


Top ↑

Source Source

File: wp-includes/class-wp-meta-query.php

	protected function is_first_order_clause( $query ) {
		return isset( $query['key'] ) || isset( $query['value'] );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.