[ Index ] |
PHP Cross Reference of BuddyPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * BuddyPress - Users Header 4 * 5 * @since 3.0.0 6 * @version 7.0.0 7 */ 8 ?> 9 10 <div id="item-header-avatar"> 11 <a href="<?php bp_displayed_user_link(); ?>"> 12 13 <?php bp_displayed_user_avatar( 'type=full' ); ?> 14 15 </a> 16 </div><!-- #item-header-avatar --> 17 18 <div id="item-header-content"> 19 20 <?php if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() ) : ?> 21 <h2 class="user-nicename">@<?php bp_displayed_user_mentionname(); ?></h2> 22 <?php endif; ?> 23 24 <?php bp_nouveau_member_hook( 'before', 'header_meta' ); ?> 25 26 <?php if ( bp_nouveau_member_has_meta() ) : ?> 27 <div class="item-meta"> 28 29 <?php bp_nouveau_member_meta(); ?> 30 31 </div><!-- #item-meta --> 32 <?php endif; ?> 33 34 <?php 35 bp_member_type_list( 36 bp_displayed_user_id(), 37 array( 38 'label' => array( 39 'plural' => __( 'Member Types', 'buddypress' ), 40 'singular' => __( 'Member Type', 'buddypress' ), 41 ), 42 'list_element' => 'span', 43 ) 44 ); 45 ?> 46 47 <?php bp_nouveau_member_header_buttons( array( 'container_classes' => array( 'member-header-actions' ) ) ); ?> 48 </div><!-- #item-header-content -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Jan 14 01:01:03 2025 | Cross-referenced by PHPXref 0.7.1 |