Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/wp-includes/class-wp-meta-query.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ class WP_Meta_Query {
* @type string $type_key MySQL data type that the meta_key column will be CAST to for
* comparisons. Accepts 'BINARY' for case-sensitive regular expression
* comparisons. Default is ''.
* @type string|string[] $value Meta value or values to filter by.
* @type string|string[] $value Meta value or values to filter by. When $compare is set to
* 'REGEXP', 'NOT REGEXP', or 'RLIKE', the value is used as a raw MySQL regular
* expression and should not be wrapped in delimiters such as '/'.
* @type string $compare MySQL operator used for comparing the $value. Accepts:
* - '='
* - '!='
Expand Down
Loading