custom user roll
list of users with custom roll + pagination
// WP_User_Query arguments $args = array( 'role' => 'taller', 'number' => '1000', 'offset' => '20', 'order' => 'ASC', 'orderby' => 'display_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 }