diff --git a/src/wp-includes/class-wp-meta-query.php b/src/wp-includes/class-wp-meta-query.php
index 69dde01ff0..df4c8c503e 100644
a
|
b
|
class WP_Meta_Query { |
123 | 123 | * - 'NOT IN' |
124 | 124 | * - 'REGEXP' |
125 | 125 | * - 'NOT REGEXP' |
126 | | * - 'RLIKE', |
| 126 | * - 'RLIKE' |
127 | 127 | * - 'EXISTS' (alias of '=') |
128 | 128 | * - 'NOT EXISTS' (alias of '!=') |
129 | 129 | * Default is 'IN' when `$key` is an array, '=' otherwise. |
… |
… |
class WP_Meta_Query { |
132 | 132 | * comparisons. Default is ''. |
133 | 133 | * @type string|string[] $value Meta value or values to filter by. |
134 | 134 | * @type string $compare MySQL operator used for comparing the $value. Accepts: |
135 | | * - '=', |
| 135 | * - '=' |
136 | 136 | * - '!=' |
137 | 137 | * - '>' |
138 | 138 | * - '>=' |