diff --git a/src/wp-includes/class-wp-list-util.php b/src/wp-includes/class-wp-list-util.php index 3b1d328447..a09b119f2c 100644 --- a/src/wp-includes/class-wp-list-util.php +++ b/src/wp-includes/class-wp-list-util.php @@ -102,12 +102,23 @@ class WP_List_Util { $filtered = array(); foreach ( $this->output as $key => $obj ) { - $to_match = (array) $obj; - $matched = 0; + foreach ( $args as $m_key => $m_value ) { - if ( array_key_exists( $m_key, $to_match ) && $m_value == $to_match[ $m_key ] ) { - $matched++; + + if ( is_array( $obj ) ) { + + // Treat object as an array + if ( array_key_exists( $m_key, $obj ) && ( $m_value == $obj[ $m_key ] ) ) { + $matched++; + } + + } elseif ( is_object( $obj ) ) { + + // Treat object as an object + if ( isset( $obj->{$m_key} ) && ( $m_value == $obj->{$m_key} ) ) { + $matched++; + } } }