W3cubDocs

/WordPress

WP_Site_Query::get_search_sql( string $string, string[] $columns )

Used internally to generate an SQL string for searching across multiple columns.

Parameters

$string

(string) (Required) Search string.

$columns

(string[]) (Required) Array of columns to search.

Return

(string) Search SQL.

Source

File: wp-includes/class-wp-site-query.php

protected function get_search_sql( $string, $columns ) {
		global $wpdb;

		if ( false !== strpos( $string, '*' ) ) {
			$like = '%' . implode( '%', array_map( array( $wpdb, 'esc_like' ), explode( '*', $string ) ) ) . '%';
		} else {
			$like = '%' . $wpdb->esc_like( $string ) . '%';
		}

		$searches = array();
		foreach ( $columns as $column ) {
			$searches[] = $wpdb->prepare( "$column LIKE %s", $like );
		}

		return '(' . implode( ' OR ', $searches ) . ')';
	}

Changelog

Version Description
4.6.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_site_query/get_search_sql