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
220            *
221            * The passed WP_User_Query object contains the query variables, not
222            * yet passed into SQL.
223            *
224            * @since 4.0.0
225            *
226            * @param WP_User_Query $this The current WP_User_Query instance,
227            *                            passed by reference.
228            */
229           do_action( 'pre_get_users', $this );
230
231           // Ensure that query vars are filled after 'pre_get_users'.
232           $qv =& $this->query_vars;
233           $qv = $this->fill_query_vars( $qv );
234
235           if ( is_array( $qv['fields'] ) ) {
236                $qv['fields'] = array_unique( $qv['fields'] );
237
238                $this->query_fields = array();