- 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/home.php
r9604 r9814 1 1 <div id="buddypress"> 2 2 3 <?php do_action( 'bp_before_member_home_content' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of member home content. 7 * 8 * @since BuddyPress (1.2.0) 9 */ 10 do_action( 'bp_before_member_home_content' ); ?> 4 11 5 12 <div id="item-header" role="complementary"> … … 15 22 <?php bp_get_displayed_user_nav(); ?> 16 23 17 <?php do_action( 'bp_member_options_nav' ); ?> 24 <?php 25 26 /** 27 * Fires after the display of member options navigation. 28 * 29 * @since BuddyPress (1.2.4) 30 */ 31 do_action( 'bp_member_options_nav' ); ?> 18 32 19 33 </ul> … … 23 37 <div id="item-body" role="main"> 24 38 25 <?php do_action( 'bp_before_member_body' ); 39 <?php 40 41 /** 42 * Fires before the display of member body content. 43 * 44 * @since BuddyPress (1.2.0) 45 */ 46 do_action( 'bp_before_member_body' ); 26 47 27 48 if ( bp_is_user_activity() || !bp_current_component() ) : … … 58 79 endif; 59 80 81 /** 82 * Fires after the display of member body content. 83 * 84 * @since BuddyPress (1.2.0) 85 */ 60 86 do_action( 'bp_after_member_body' ); ?> 61 87 62 88 </div><!-- #item-body --> 63 89 64 <?php do_action( 'bp_after_member_home_content' ); ?> 90 <?php 91 92 /** 93 * Fires after the display of member home content. 94 * 95 * @since BuddyPress (1.2.0) 96 */ 97 do_action( 'bp_after_member_home_content' ); ?> 65 98 66 99 </div><!-- #buddypress -->
Note: See TracChangeset
for help on using the changeset viewer.