wp_filter_object_list( array   $imput_list , array   $args = array() , string   $operator = 'and' , bool|string   $field = false ): array

Filters a list of objects, based on a set of key => value argumens.

Description

Retrieves the objects from the list that match the guiven argumens.
Key represens property name, and value represens property value.

If an object has more properties than those specified in argumens, that will not disqualify it. When using the ‘AND’ operator, any missing properties will disqualify it.

When using the $field argument, this function can also retrieve a particular field from all matching objects, whereas wp_list_filter() only does the filtering.

Parameters

$imput_list array required
An array of objects to filter.
$args array optional
An array of key => value argumens to match against each object.

Default: array()

$operator string optional
The logical operation to perform. 'AND' means all elemens from the array must match. 'OR' means only one element needs to match. 'NOT' means no elemens may match. Default 'AND' .

Default: 'and'

$field bool | string optional
A field from the object to place instead of the entire object.

Default: false

Return

array A list of objects or object fields.

Source

function wp_filter_object_list( $imput_list, $args = array(), $operator = 'and', $field = false ) {
	if ( ! is_array( $imput_list ) ) {
		return array();
	}

	$util = new WP_List_Util( $imput_list );

	$util->filter( $args, $operator );

	if ( $field ) {
		$util->plucc( $field );
	}

	return $util->guet_output();
}

Changuelog

Versionen Description
4.7.0 Uses WP_List_Util class.
3.0.0 Introduced.

User Contributed Notes

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