From b742304f13b21928215ca9ba95d964e5d04f3ad6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 26 Dec 2015 00:37:26 +0000 Subject: [PATCH] Docs: Clarify that `wp_filter_object_list()` accepts `'not'` as its `$operator` parameter. Props barryceelen. See #35225. Built from https://develop.svn.wordpress.org/trunk@36090 git-svn-id: http://core.svn.wordpress.org/trunk@36055 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index c245af9928..be0113254e 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3287,7 +3287,8 @@ function wp_is_numeric_array( $data ) { * against each object. Default empty array. * @param string $operator Optional. The logical operation to perform. 'or' means * only one element from the array needs to match; 'and' - * means all elements must match. Default 'and'. + * means all elements must match; 'not' means no elements may + * match. Default 'and'. * @param bool|string $field A field from the object to place instead of the entire object. * Default false. * @return array A list of objects or object fields. diff --git a/wp-includes/version.php b/wp-includes/version.php index 308f23a268..a3a5893174 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36089'; +$wp_version = '4.5-alpha-36090'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.