Display Following and Followers on the sidebar
-
Great Plugin!
Is there a way to display a list of users i’m following and that are following me on the sidebar without using a widget??
I’m really new to php and couldn’t figure out how to do it by myself, we used the following code to display a list of friends,could this be modified to display following and followers?
<?php if ( bp_has_members( 'type=newest&max=20&user_id=' . bp_loggedin_user_id() ) & is_user_logged_in() ) : ?>
<?php while ( bp_members() ) : bp_the_member(); ?>
[a href="<?php bp_member_permalink() ?>" title="<?php bp_member_name();?>"]
<?php bp_member_avatar( $avatar_args ) ?>
[/a]
<?php endwhile; ?>
<?php else: ?>
<?php _e( 'You dont have any friends yet', 'buddypress' ) ?>
<?php endif; ?>
Thank you!
- The topic ‘Display Following and Followers on the sidebar’ is closed to new replies.