- Timestamp:
- 04/23/2015 05:20:25 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/forums/forums-loop.php
r9604 r9789 12 12 ?> 13 13 14 <?php do_action( 'bp_before_forums_loop' ); ?> 14 <?php 15 16 /** 17 * Fires at the start of the forums loop. 18 * 19 * @since BuddyPress (1.2.6) 20 */ 21 do_action( 'bp_before_forums_loop' ); ?> 15 22 16 23 <?php if ( bp_has_forum_topics( bp_ajax_querystring( 'forums' ) ) ) : ?> … … 32 39 </div> 33 40 34 <?php do_action( 'bp_before_directory_forums_list' ); ?> 41 <?php 42 43 /** 44 * Fires before the display of the forums list. 45 * 46 * @since BuddyPress (1.1.0) 47 */ 48 do_action( 'bp_before_directory_forums_list' ); ?> 35 49 36 50 <table class="forum"> … … 41 55 <th id="th-freshness"><?php _e( 'Freshness', 'buddypress' ); ?></th> 42 56 43 <?php do_action( 'bp_directory_forums_extra_cell_head' ); ?> 57 <?php 58 59 /** 60 * Fires at the end of <tr> row holding the <th> tags. 61 * 62 * @since BuddyPress (1.2.4) 63 */ 64 do_action( 'bp_directory_forums_extra_cell_head' ); ?> 44 65 45 66 </tr> … … 92 113 </td> 93 114 94 <?php do_action( 'bp_directory_forums_extra_cell' ); ?> 115 <?php 116 117 /** 118 * Fires at the end of <tr> row holding the <td> tags. 119 * 120 * @since BuddyPress (1.1.0) 121 */ 122 do_action( 'bp_directory_forums_extra_cell' ); ?> 95 123 96 124 </tr> 97 125 98 <?php do_action( 'bp_directory_forums_extra_row' ); ?> 126 <?php 127 128 /** 129 * Fires after the <tr> for a forum listing display. 130 * 131 * @since BuddyPress (1.1.0) 132 */ 133 do_action( 'bp_directory_forums_extra_row' ); ?> 99 134 100 135 <?php endwhile; ?> … … 103 138 </table> 104 139 105 <?php do_action( 'bp_after_directory_forums_list' ); ?> 140 <?php 141 142 /** 143 * Fires after the display of the forums list. 144 * 145 * @since BuddyPress (1.1.0) 146 */ 147 do_action( 'bp_after_directory_forums_list' ); ?> 106 148 107 149 <div id="pag-bottom" class="pagination"> … … 125 167 <?php endif; ?> 126 168 127 <?php do_action( 'bp_after_forums_loop' ); ?> 169 <?php 170 171 /** 172 * Fires at the end of the forums loop. 173 * 174 * @since BuddyPress (1.2.6) 175 */ 176 do_action( 'bp_after_forums_loop' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.