1<?php
2get_header();
3
4// etc.
5
6// In the main template file
7$users = new \WP_User_Query( [ ... ] );
8
9foreach ( $users as $user )
10{
11 set_query_var( 'user_id', absint( $user->ID ) );
12 get_template_part( 'template-parts/user', 'contact_methods' );
13}