WP_Meta_Query::is_first_order_clause( array $query ): bool

Determines whether a query clause is first-order.

Description

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

Parameters

$queryarrayrequired
Meta query arguments.

Return

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

Source

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

Changelog

VersionDescription
4.1.0Introduced.

User Contributed Notes

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