我有一个页面来显示所有的用户。 用户键入的作者。 要显示所有代理。
$args = array(
'role' => 's2member_level2',
'meta_query' => array(
array(
'key' => $filter,
'value' => $_GET['filter'],
'compare' => 'LIKE'
)
)
);
}
$users = get_users($args);
if ($users) {
foreach ($users as $user) {
$user_profile_data = get_user_meta($user->ID,'wp_s2member_custom_fields',true);
//print_r($user_profile_data);
echo '<div class="user_data" >';
echo '<a href="'.site_url().'/author/'.$user->user_login.'">'.user_avatar_get_avatar($user_info->ID,'110').'</a>';
echo '<div class="user-info">';
//print_r($users);
echo '<h6>'.'<a href="'.site_url().'/author/'.$user->user_login.'">'.$user->display_name.'</a></h6>';
if ($user_profile_data[contact_number])
echo '<p> call-'.$user_profile_data[contact_number].'</p>';
else
echo '<p> Phone number not specified.</p>';
echo '<p>'.$user->user_email.'</p>';
echo '</div>';
echo '<div class="agent_specify" >';
$agent_specify = $user_profile_data[posting_preferance];
echo '<p>Agent Speciality :</p>';
if ($agent_specify) {
echo '<ul>';
foreach ($agent_specify as $specification){
echo '<li>'.$specification.'</li>';
}
echo '</ul>';
}
else {
echo '<p style="font-weight: normal;">Not specified</p>';
}
echo '</div>';
echo '<a href="'.site_url().'/author/'.$user->user_login.'/#contact">contact »</a>';
echo '</div>';
}
}
else {
echo '<h4>No agents found.</h4>';
}
?>
</div>
我能找到的用户列表中,但我想在这里分页,因为我的页面在这里有大量的用户。