bp_friends_random_friends()
Output a block of random friends.
Description
No longer used in BuddyPress.
Source
File: bp-friends/bp-friends-template.php
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | function bp_friends_random_friends() { if ( ! $friend_ids = wp_cache_get( 'friends_friend_ids_' . bp_displayed_user_id(), 'bp' ) ) { $friend_ids = BP_Friends_Friendship::get_random_friends( bp_displayed_user_id() ); wp_cache_set( 'friends_friend_ids_' . bp_displayed_user_id(), $friend_ids , 'bp' ); } ?> <div class = "info-group" > <h4><?php bp_word_or_name( __( "My Connections" , 'buddyboss' ), __( "%s's Connections" , 'buddyboss ' ) ) ?> (<?php echo BP_Friends_Friendship::total_friend_count( bp_displayed_user_id() ) ?>) <span><a href="<?php echo trailingslashit( bp_displayed_user_domain() . bp_get_friends_slug() ) ?>"><?php _e(' See All ', ' buddyboss') ?></a></span></h4> <?php if ( $friend_ids ) { ?> <ul class = "horiz-gallery" > <?php for ( $i = 0, $count = count ( $friend_ids ); $i < $count ; ++ $i ) { ?> <li> <a href= "<?php echo bp_core_get_user_domain( $friend_ids[$i] ) ?>" ><?php echo bp_core_fetch_avatar( array ( 'item_id' => $friend_ids [ $i ], 'type' => 'thumb' ) ) ?></a> <h5><?php echo bp_core_get_userlink( $friend_ids [ $i ]) ?></h5> </li> <?php } ?> </ul> <?php } else { ?> <div id= "message" class = "info" > <p><?php bp_word_or_name( __( "You haven't made any connections yet." , 'buddyboss ' ), __( "%s hasn' t created any connections yet.", 'buddyboss' ) ) ?></p> </div> <?php } ?> <div class = "clear" ></div> </div> <?php } |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.