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
210            *
211            * The passed WP_User_Query object contains the query variables, not
212            * yet passed into SQL.
213            *
214            * @since 4.0.0
215            *
216            * @param WP_User_Query $this The current WP_User_Query instance,
217            *                            passed by reference.
218            */
219           do_action( 'pre_get_users', $this );
220
221           // Ensure that query vars are filled after 'pre_get_users'.
222           $qv =& $this->query_vars;
223           $qv =  $this->fill_query_vars( $qv );
224
225           if ( is_array( $qv['fields'] ) ) {
226                $qv['fields'] = array_unique( $qv['fields'] );
227
228                $this->query_fields = array();