wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_filter_object_list › WordPress Function
Since3.0.0
Deprecatedn/a
› wp_filter_object_list ( $input_list, $args = array(), $operator = 'and', $field = false )
Parameters: (4) |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Filters a list of objects, based on a set of key => value arguments.
Retrieves the objects from the list that match the given arguments. Key represents property name, and value represents property value. If an object has more properties than those specified in arguments, 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.Related Functions: wp_filter_oembed_result, wp_terms_checklist, wp_filter_nohtml_kses, wp_filter_post_kses, wp_filter_out_block_nodes
Source
function wp_filter_object_list( $input_list, $args = array(), $operator = 'and', $field = false ) { if ( ! is_array( $input_list ) ) { return array(); } $util = new WP_List_Util( $input_list ); $util->filter( $args, $operator ); if ( $field ) { $util->pluck( $field ); } return $util->get_output(); }