git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@6 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
50 lines
1.5 KiB
PHP
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>
|