Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_user_search

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
544           if ( $this->role ) {
545                $this->query_from .= " INNER JOIN $wpdb->usermeta ON $wpdb->users.ID = $wpdb->usermeta.user_id";
546                $this->query_where .= $wpdb->prepare(" AND $wpdb->usermeta.meta_key = '{$wpdb->prefix}capabilities' AND $wpdb->usermeta.meta_value LIKE %s", '%' . $this->role . '%');
547           } elseif ( is_multisite() ) {
548                $level_key = $wpdb->prefix . 'capabilities'; // WPMU site admins don't have user_levels.
549                $this->query_from .= ", $wpdb->usermeta";
550                $this->query_where .= " AND $wpdb->users.ID = $wpdb->usermeta.user_id AND meta_key = '{$level_key}'";
551           }
552
553           do_action_ref_array( 'pre_user_search', array( &$this ) );
554      }
555
556      /**
557       * Executes the user search query.
558       *
559       * @since 2.1.0
560       * @access public
561       */
562      public function query() {