Opened 2 years ago
Closed 15 months ago
#17573 closed feature request (wontfix)
More filters in user.php
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Users | Version: | |
| Severity: | normal | Keywords: | |
| Cc: |
Description
In the wp-includes/user.php there should be some more filters in the function prepare_query().
e.G. before the line
$this->query_where .= $this->get_search_sql( $search, $search_columns, $wild );
this
$search_columns = apply_filters( 'user_list_search_columns', $search_columns ); $this->query_where .= $this->get_search_sql( $search, $search_columns, $wild );
Also, in the sorting block:
$orderby = apply_filters( 'user_list_search_order_by', $orderby );
Change History (4)
comment:1
hughwillfayle — 2 years ago
- Type changed from enhancement to feature request
comment:2
hughwillfayle — 15 months ago
- Resolution set to invalid
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

All parts of the query can be changed through the 'pre_user_query' action.