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. 'AND' means all elements from the array must match. 'OR' means only one element needs to match. 'NOT' means no elements may match.
Default value: 'AND'
(array) Array of found values.
File: wp-includes/functions.php
function wp_list_filter( $list, $args = array(), $operator = 'AND' ) { if ( ! is_array( $list ) ) { return array(); } $util = new WP_List_Util( $list ); return $util->filter( $args, $operator ); }
Version | Description |
---|---|
4.7.0 | Uses WP_List_Util class. |
3.1.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_list_filter