Fetching Users Avatars by UserID
-
I am trying to fetch Avatars by userID the code below works fine for one user but how can I fetch more than 1 user by having their userIDs?
<?php
$user_id= ‘2’;
bp_activity_avatar( ‘user_id=’ . $user_id );
echo bp_core_get_userlink( $user_id );
?>
- You must be logged in to reply to this topic.