user_search_columns WordPress Filter Hook

The user_search_columns hook allows you to add custom columns to the user search results page. This can be useful if you want to add extra data to the search results, or if you want to make it easier to find a specific user.

apply_filters( 'user_search_columns', string[] $search_columns, string $search, WP_User_Query $query ) #

Filters the columns to search in a WP_User_Query search.


Description

The default columns depend on the search term, and include ‘ID’, ‘user_login’, ‘user_email’, ‘user_url’, ‘user_nicename’, and ‘display_name’.


Top ↑

Parameters

$search_columns

(string[])Array of column names to be searched.

$search

(string)Text being searched.

$query

(WP_User_Query)The current WP_User_Query instance.


Top ↑

More Information

The user_search_columns filter is used to determine which user fields in the database are used when performing a search on user information.

 

When the ‘user_search_columns’ filter is called, it is passed three parameters: an array of fields to search, the search term, WP_User_Query object

<pre>add_filter( 'user_search_columns', 'filter_function_name', 10, 3 );

function filter_function_name( $search_columns, $search, $wp_user_query ) {
    // Alter $search_columns to include the fields you want to search on
    return $search_columns;
}

Where ‘filter_function_name’ is the function WordPress should call when the filter is run. Note that the filter function must return a value after it is finished processing or the search terms will be empty.

filter_function_name should be unique function name. It cannot match any other function name already declared


Top ↑

Source

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

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by the Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.