Uses
Uses | Description |
---|---|
wp-includes/class-wp-list-util.php: WP_List_Util::__construct() | Constructor. |
Filters a list of objects, based on a set of key => value arguments.
(array) (Required) An array of objects to filter
(array) (Optional) An array of key => value arguments to match against each object.
Default value: array()
(string) (Optional) The logical operation to perform. 'or' means only one element from the array needs to match; 'and' means all elements must match; 'not' means no elements may match.
Default value: 'and'
(bool|string) (Optional) A field from the object to place instead of the entire object.
Default value: false
(array) A list of objects or object fields.
File: wp-includes/functions.php
function wp_filter_object_list( $list, $args = array(), $operator = 'and', $field = false ) { if ( ! is_array( $list ) ) { return array(); } $util = new WP_List_Util( $list ); $util->filter( $args, $operator ); if ( $field ) { $util->pluck( $field ); } return $util->get_output(); }
Version | Description |
---|---|
4.7.0 | Uses WP_List_Util class. |
3.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_filter_object_list