wp_list_pluck() WP 1.0
Pluck a certain field out of each object in a list.
This has the same functionality and prototype of array_column() (PHP 5.5) but also supports objects.
Works based on: WP_List_Util::pluck()
1 time = 0.00001s = speed of light | 50000 times = 0.45s = very fast
No Hooks.
Return
Array. Array of found values. If $index_key is set, an array of found values with keys corresponding to $index_key. If $index_key is null, array keys from the original $list will be preserved in the results.
Usage
wp_list_pluck( $list, $field, $index_key );
- $list(array) (required)
- List of objects or arrays
- $field(int/string) (required)
- Field from the object to place instead of the entire object
- $index_key(int/string)
- Field from the object to use as keys for the new array.
Default: null
Changelog
Since 3.1.0 | Introduced. |
Since 4.0.0 | $index_key parameter added. |
Since 4.7.0 | Uses WP_List_Util class. |
Code of wp_list_pluck() wp list pluck WP 5.6
function wp_list_pluck( $list, $field, $index_key = null ) {
$util = new WP_List_Util( $list );
return $util->pluck( $field, $index_key );
}Related Functions
From tag: array list help functions (sorting arrays objects)
More from category: Helper Functions
- __return_empty_array()
- __return_empty_string()
- __return_false()
- __return_null()
- __return_true()
- __return_zero()
- build_query()
- get_page_hierarchy()
- get_temp_dir()
- human_readable_duration()
- is_email()
- is_php_version_compatible()
- is_serialized()
- is_serialized_string()
- is_wp_version_compatible()
- map_deep()
- maybe_serialize()
- maybe_unserialize()
- path_join()
- seems_utf8()
- stripslashes_deep()
- timer_stop()
- urlencode_deep()
- wp_basename()
- wp_debug_backtrace_summary()
- wp_doing_ajax()
- wp_extract_urls()
- wp_generate_uuid4()
- wp_html_split()
- wp_is_json_request()
- wp_is_uuid()
- wp_json_encode()
- wp_kses_array_lc()
- wp_kses_hair()
- wp_kses_uri_attributes()
- wp_make_link_relative()