WP_Comment_Query::get_search_sql( string $string, array $cols )
Used internally to generate an SQL string for searching across multiple columns
Parameters
- $string
-
(string) (Required)
- $cols
-
(array) (Required)
Return
(string)
Source
File: wp-includes/class-wp-comment-query.php
protected function get_search_sql( $string, $cols ) {
global $wpdb;
$like = '%' . $wpdb->esc_like( $string ) . '%';
$searches = array();
foreach ( $cols as $col ) {
$searches[] = $wpdb->prepare( "$col LIKE %s", $like );
}
return ' AND (' . implode( ' OR ', $searches ) . ')';
} Changelog
| Version | Description |
|---|---|
| 3.1.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_comment_query/get_search_sql