Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: users_pre_query

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
603            * by reference. If WP_User_Query does not perform a database query, it will not
604            * have enough information to generate these values itself.
605            *
606            * @since 5.1.0
607            *
608            * @param array|null $results Return an array of user data to short-circuit WP's user query
609            *                            or null to allow WP to run its normal queries.
610            * @param WP_User_Query $this The WP_User_Query instance (passed by reference).
611            */
612           $this->results = apply_filters_ref_array( 'users_pre_query', array( null, &$this ) );
613
614           if ( null === $this->results ) {
615                $this->request = "SELECT $this->query_fields $this->query_from $this->query_where $this->query_orderby $this->query_limit";
616
617                if ( is_array( $qv['fields'] ) || 'all' == $qv['fields'] ) {
618                     $this->results = $wpdb->get_results( $this->request );
619                } else {
620                     $this->results = $wpdb->get_col( $this->request );
621                }