user query student pi employe
// WP_User_Query arguments $args = array( 'role' => 'student, pi, employe', 'search_columns' => array( 'team' ), 'orderby' => 'user_name', ); // The User Query $user_query = new WP_User_Query( $args ); // The User Loop if ( ! empty( $user_query->results ) ) { foreach ( $user_query->results as $user ) { // do something } } else { // no users found }