diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 7f57d234c1..ce28ff7a9a 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -5176,6 +5176,10 @@ function wp_list_filter( $list, $args = array(), $operator = 'AND' ) { * `$list` will be preserved in the results. */ function wp_list_pluck( $list, $field, $index_key = null ) { + if ( ! is_array( $list ) ) { + return array(); + } + $util = new WP_List_Util( $list ); return $util->pluck( $field, $index_key ); diff --git a/wp-includes/version.php b/wp-includes/version.php index e44aa07dcd..e05c4e13b6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-53044'; +$wp_version = '6.0-alpha-53045'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.