Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: codex help needed: documentation for dummies

@enlightenmental1

Participant

oops…. yeap sorry Jeff… I forgot to turn the lights off

@ Socailpreneur I needed to add BP specific information to the sidebar of the users blogs.. like their avatar, last active, friends, groups, events etc

something like this

<?php

$users = get_users_of_blog( $current_blog->blog_id );

foreach ( $users as $user ) {

$user = new BP_Core_User( $user->user_id );

?>

<div style=”border:1px solid; padding-top:5px; padding-bottom:5px; margin:0px;”>

<div style=”float:left;margin:0px;padding-left:5px;”><?php echo $user->avatar_thumb ?></div>

<h4 align=”center”> Welcome to <?php echo $user->user_link ?>’s Page!</h4>

<small><center><?php the_author(); ?> was last <?php echo $user->last_active ?></center></small>

<?php

global $blog_id;

$blog_details = get_blog_details($blog_id);

echo ‘<center>http://&#8217;.$blog_details->domain,$blog_details->path.’ </center>’ ;

?>

</div>

<div class=”clear”></div>

<?php } ?>

Skip to toolbar