You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Searches through all or a selection of database tables for a given string, Outputs colorized references to the string.
518
+
Searches through all of the text columns in a selection of database tables for a given string, Outputs colorized references to the string.
516
519
517
520
Defaults to searching through all tables registered to $wpdb. On multisite, this default is limited to the tables for the current site.
518
521
@@ -546,7 +549,7 @@ Defaults to searching through all tables registered to $wpdb. On multisite, this
546
549
---
547
550
548
551
[--regex]
549
-
Runs the search as a regular expression (without delimiters). The search becomes case-sensitive (i.e. no PCRE flags are added). Delimiters must be escaped if they occur in the expression.
552
+
Runs the search as a regular expression (without delimiters). The search becomes case-sensitive (i.e. no PCRE flags are added). Delimiters must be escaped if they occur in the expression. Because the search is run on individual columns, you can use the `^` and `$` tokens to mark the start and end of a match, respectively.
550
553
551
554
[--regex-flags=<regex-flags>]
552
555
Pass PCRE modifiers to the regex search (e.g. 'i' for case-insensitivity).
0 commit comments