apply_filters( 'site_search_columns', string[] $search_columns, string $search, WP_Site_Query $query )

Filters the columns to search in a WP_Site_Query search.


Description

The default columns include ‘domain’ and ‘path.


Top ↑

Parameters

$search_columns string[]
Array of column names to be searched.
$search string
Text being searched.
$query WP_Site_Query
The current WP_Site_Query instance.

Top ↑

Source

File: wp-includes/class-wp-site-query.php. View all references

$search_columns = apply_filters( 'site_search_columns', $search_columns, $this->query_vars['search'], $this );


Top ↑

Changelog

Changelog
Version Description
4.6.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.