ASong2U_Web/wp-content/themes/score/buddypress/member-header.php
2012-07-13 17:42:33 +00:00

50 lines
1.5 KiB
PHP

<?php
/**
* BuddyPress - Users Header
*
* @package BuddyPress
* @subpackage bp-default
*/
?>
<div class="columns twothirds first text-left">
<div id="item-header-avatar" class="columns onefourth first text-left">
<a href="<?php bp_get_loggedin_user_link(); ?>"><?php bp_loggedin_user_avatar( 'type=small' ); ?></a>
</div>
<div class="columns threefourths last text-left">
<strong><a href="<?php bp_get_loggedin_user_link(); ?>"><?php bp_loggedin_user_fullname(); ?></a></strong><br/>
<span class="user-nicename">@<?php bp_loggedin_user_username(); ?></span>
<span class="activity"><?php bp_last_activity(bp_loggedin_user_id() ); ?></span>
<div id="item-meta">
<?php if ( bp_is_active( 'activity' ) ) : ?>
<div id="latest-update">
<?php /*bp_activity_latest_update( bp_loggedin_user_id() );*/ ?>
</div>
<?php endif; ?>
<div id="item-buttons">
<?php do_action( 'bp_member_header_actions' ); ?>
</div><!-- #item-buttons -->
<?php
/***
* If you'd like to show specific profile fields here use:
* bp_profile_field_data( 'field=About Me' ); -- Pass the name of the field
*/
do_action( 'bp_profile_header_meta' );
?>
</div><!-- #item-meta -->
</div>
</div>