Title: issues.inc's Replies | WordPress.org

---

# issues.inc

  [  ](https://wordpress.org/support/users/issuesinc/)

 *   [Profile](https://wordpress.org/support/users/issuesinc/)
 *   [Topics Started](https://wordpress.org/support/users/issuesinc/topics/)
 *   [Replies Created](https://wordpress.org/support/users/issuesinc/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/issuesinc/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/issuesinc/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/issuesinc/engagements/)
 *   [Favorites](https://wordpress.org/support/users/issuesinc/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress Follow] Display Following and Followers on the sidebar](https://wordpress.org/support/topic/display-following-and-followers-on-the-sidebar/)
 *  Thread Starter [issues.inc](https://wordpress.org/support/users/issuesinc/)
 * (@issuesinc)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/display-following-and-followers-on-the-sidebar/#post-5581302)
 * Thanks r-a-y!
 * In case anyone else needs this, here’s the code
 * Display Following:
    `<?php if ( ! $following = bp_get_following_ids( array( '
   user_id' => bp_loggedin_user_id() ) ) ) { return false; } if ( bp_has_members(
   array( 'include' => $following, 'max' => 30, 'populate_extras' => false, ) ) ):?
   > <?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 are not following anyone
   yet', 'buddypress' ) ?> <?php endif; ?>
 * Display Followers:
    `<?php if ( ! $follower = bp_get_follower_ids( array( 'user_id'
   => bp_loggedin_user_id() ) ) ) { return false; } if ( bp_has_members( array( '
   include' => $follower, 'max' => 30, 'populate_extras' => false, ) ) ) : ?> <?
   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 followers
   yet', 'buddypress' ) ?> <?php endif; ?>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [sCategory permalink not working](https://wordpress.org/support/topic/scategory-permalink-not-working/)
 *  [issues.inc](https://wordpress.org/support/users/issuesinc/)
 * (@issuesinc)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/scategory-permalink-not-working/#post-991551)
 * the %scategory% should be placed in the common settings, choose custom structure
   and put /%category%/%postname%/ in there, and just leave the base category empty.

Viewing 2 replies - 1 through 2 (of 2 total)