- Timestamp:
- 04/28/2015 01:52:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/member-header.php
r9604 r9814 10 10 ?> 11 11 12 <?php do_action( 'bp_before_member_header' ); ?> 12 <?php 13 14 /** 15 * Fires before the display of a member's header. 16 * 17 * @since BuddyPress (1.2.0) 18 */ 19 do_action( 'bp_before_member_header' ); ?> 13 20 14 21 <div id="item-header-avatar"> … … 28 35 <span class="activity"><?php bp_last_activity( bp_displayed_user_id() ); ?></span> 29 36 30 <?php do_action( 'bp_before_member_header_meta' ); ?> 37 <?php 38 39 /** 40 * Fires before the display of the member's header meta. 41 * 42 * @since BuddyPress (1.2.0) 43 */ 44 do_action( 'bp_before_member_header_meta' ); ?> 31 45 32 46 <div id="item-meta"> … … 44 58 <div id="item-buttons"> 45 59 46 <?php do_action( 'bp_member_header_actions' ); ?> 60 <?php 61 62 /** 63 * Fires in the member header actions section. 64 * 65 * @since BuddyPress (1.2.6) 66 */ 67 do_action( 'bp_member_header_actions' ); ?> 47 68 48 69 </div><!-- #item-buttons --> 49 70 50 71 <?php 51 /*** 52 * If you'd like to show specific profile fields here use: 53 * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field 54 */ 72 73 /** 74 * Fires after the group header actions section. 75 * 76 * If you'd like to show specific profile fields here use: 77 * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field 78 * 79 * @since BuddyPress (1.2.0) 80 */ 55 81 do_action( 'bp_profile_header_meta' ); 56 82 … … 61 87 </div><!-- #item-header-content --> 62 88 63 <?php do_action( 'bp_after_member_header' ); ?>89 <?php 64 90 65 <?php do_action( 'template_notices' ); ?> 91 /** 92 * Fires after the display of a member's header. 93 * 94 * @since BuddyPress (1.2.0) 95 */ 96 do_action( 'bp_after_member_header' ); ?> 97 98 <?php 99 100 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 101 do_action( 'template_notices' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.