Pagination for user list
i am showing all the users by get_user function. but i need a paginate it.
i tried lots but did nt succeed. here is my code
$args = array(
'meta_query' => array(
array(
'key' => 'ib_s2member_custom_fields',
'value' => trim($_GET["country"]),
'compare' => 'LIKE'
),
array(
'key' => 'ib_s2member_custom_fields',
'value' => trim($_GET["city"]),
'compare' => 'LIKE'
),
array(
'key' => 'ib_s2member_custom_fields',
'value' => $first_name,
'compare' => 'LIKE'
),
array(
'key' => 'ib_s2member_custom_fields',
'value' => $last_name,
'compare' => 'LIKE'
)
)
);
$users = get_users($args);
?>
No comments:
Post a Comment