WP_Comment_Query::get_search_sql( string $string, array $cols )
Used internally to generate an SQL string for searching across multiple columns
Parameters
- $string
-
(Required)
- $cols
-
(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 |
---|---|
WP-3.1.0 | Introduced. |