Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_get_users

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
262            * Fires before the WP_User_Query has been parsed.
263            *
264            * The passed WP_User_Query object contains the query variables,
265            * not yet passed into SQL.
266            *
267            * @since 4.0.0
268            *
269            * @param WP_User_Query $query Current instance of WP_User_Query (passed by reference).
270            */
271           do_action_ref_array( 'pre_get_users', array( &$this ) );
272
273           // Ensure that query vars are filled after 'pre_get_users'.
274           $qv =& $this->query_vars;
275           $qv = $this->fill_query_vars( $qv );
276
277           if ( is_array( $qv['fields'] ) ) {
278                $qv['fields'] = array_unique( $qv['fields'] );
279
280                $this->query_fields = array();